@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * For the full copyright and license information, please view the LICENSE |
5 | 5 | * file that was distributed with this source code. |
6 | 6 | */ |
7 | -declare(strict_types=1); |
|
7 | +declare(strict_types = 1); |
|
8 | 8 | |
9 | 9 | namespace App\Services; |
10 | 10 | |
@@ -50,9 +50,9 @@ discard block |
||
50 | 50 | * @param string $password |
51 | 51 | * @return Authenticatable |
52 | 52 | */ |
53 | - public function attemptFromEmailAndPassword(string $email, string $password): ?Authenticatable |
|
53 | + public function attemptFromEmailAndPassword(string $email, string $password): ? Authenticatable |
|
54 | 54 | { |
55 | - if (! $this->guard->validate(['email' => $email, 'password' => $password])) { |
|
55 | + if (!$this->guard->validate(['email' => $email, 'password' => $password])) { |
|
56 | 56 | return null; |
57 | 57 | } |
58 | 58 | |
@@ -64,9 +64,9 @@ discard block |
||
64 | 64 | * @param string $password |
65 | 65 | * @return Authenticatable |
66 | 66 | */ |
67 | - public function resolveFromIdAndPassword(int $id, string $password): ?Authenticatable |
|
67 | + public function resolveFromIdAndPassword(int $id, string $password): ? Authenticatable |
|
68 | 68 | { |
69 | - if (! $this->guard->validate(['id' => $id, 'password' => $password])) { |
|
69 | + if (!$this->guard->validate(['id' => $id, 'password' => $password])) { |
|
70 | 70 | return null; |
71 | 71 | } |
72 | 72 | |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | throw new UnprocessableEntityHttpException('Invalid remember token'); |
182 | 182 | } |
183 | 183 | |
184 | - if (! $user) { |
|
184 | + if (!$user) { |
|
185 | 185 | throw new UnprocessableEntityHttpException('Invalid user credentials.'); |
186 | 186 | } |
187 | 187 |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * For the full copyright and license information, please view the LICENSE |
5 | 5 | * file that was distributed with this source code. |
6 | 6 | */ |
7 | -declare(strict_types=1); |
|
7 | +declare(strict_types = 1); |
|
8 | 8 | |
9 | 9 | namespace App\GraphQL\Queries; |
10 | 10 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * @param array $args |
59 | 59 | * @return Builder|null |
60 | 60 | */ |
61 | - private function checkProject(Builder $query, array $args): ?Builder |
|
61 | + private function checkProject(Builder $query, array $args): ? Builder |
|
62 | 62 | { |
63 | 63 | return $this->whenExists($args, 'project', function(string $project) use ($query) { |
64 | 64 | return $query->where('slug', $project); |
@@ -70,9 +70,9 @@ discard block |
||
70 | 70 | * @param array $args |
71 | 71 | * @return Builder |
72 | 72 | */ |
73 | - private function checkVersion(Builder $query, array $args): ?Builder |
|
73 | + private function checkVersion(Builder $query, array $args): ? Builder |
|
74 | 74 | { |
75 | - return $this->whenExists($args, 'version', function (string $version) use ($query) { |
|
75 | + return $this->whenExists($args, 'version', function(string $version) use ($query) { |
|
76 | 76 | if ($version === 'latest') { |
77 | 77 | return $query->orderBy('version', 'desc') |
78 | 78 | ->take(1); |
@@ -9,7 +9,6 @@ |
||
9 | 9 | namespace App\GraphQL\Queries; |
10 | 10 | |
11 | 11 | use App\Models\Docs; |
12 | -use App\GraphQL\Types\DocsType; |
|
13 | 12 | use GraphQL\Type\Definition\Type; |
14 | 13 | use Illuminate\Database\Eloquent\Builder; |
15 | 14 | use Illuminate\Support\Collection; |
@@ -11,7 +11,6 @@ |
||
11 | 11 | use App\Services\TokenAuth; |
12 | 12 | use Illuminate\Support\Arr; |
13 | 13 | use GraphQL\Type\Definition\Type; |
14 | -use App\GraphQL\Types\AuthUserType; |
|
15 | 14 | use Illuminate\Contracts\Auth\Guard; |
16 | 15 | use GraphQL\Type\Definition\ObjectType; |
17 | 16 | use Illuminate\Contracts\Auth\StatefulGuard; |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * For the full copyright and license information, please view the LICENSE |
5 | 5 | * file that was distributed with this source code. |
6 | 6 | */ |
7 | -declare(strict_types=1); |
|
7 | +declare(strict_types = 1); |
|
8 | 8 | |
9 | 9 | namespace App\GraphQL\Queries; |
10 | 10 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | |
104 | 104 | $user = $this->tokenAuth->attemptFromEmailAndPassword($email, $password); |
105 | 105 | |
106 | - if (! $user) { |
|
106 | + if (!$user) { |
|
107 | 107 | throw new AccessDeniedHttpException('User password is not correct'); |
108 | 108 | } |
109 | 109 |
@@ -6,7 +6,7 @@ |
||
6 | 6 | * For the full copyright and license information, please view the LICENSE |
7 | 7 | * file that was distributed with this source code. |
8 | 8 | */ |
9 | -declare(strict_types=1); |
|
9 | +declare(strict_types = 1); |
|
10 | 10 | |
11 | 11 | namespace App\GraphQL\Types; |
12 | 12 |
@@ -6,7 +6,7 @@ |
||
6 | 6 | * For the full copyright and license information, please view the LICENSE |
7 | 7 | * file that was distributed with this source code. |
8 | 8 | */ |
9 | -declare(strict_types=1); |
|
9 | +declare(strict_types = 1); |
|
10 | 10 | |
11 | 11 | namespace App\GraphQL\Serializers; |
12 | 12 |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * For the full copyright and license information, please view the LICENSE |
5 | 5 | * file that was distributed with this source code. |
6 | 6 | */ |
7 | -declare(strict_types=1); |
|
7 | +declare(strict_types = 1); |
|
8 | 8 | |
9 | 9 | namespace App\GraphQL\Queries; |
10 | 10 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | { |
46 | 46 | $paginator = PaginatorConfiguration::find($args['query']); |
47 | 47 | if ($paginator === null) { |
48 | - throw new NotFoundHttpException('No info about ' . $args['query'] . ' query'); |
|
48 | + throw new NotFoundHttpException('No info about '.$args['query'].' query'); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | return [ |
@@ -6,7 +6,7 @@ |
||
6 | 6 | * For the full copyright and license information, please view the LICENSE |
7 | 7 | * file that was distributed with this source code. |
8 | 8 | */ |
9 | -declare(strict_types=1); |
|
9 | +declare(strict_types = 1); |
|
10 | 10 | |
11 | 11 | namespace App\GraphQL\Types; |
12 | 12 |
@@ -8,7 +8,6 @@ |
||
8 | 8 | |
9 | 9 | namespace App\GraphQL\Feature\Paginator; |
10 | 10 | |
11 | -use GraphQL\Type\Definition\Type; |
|
12 | 11 | use Illuminate\Support\Collection; |
13 | 12 | use Illuminate\Database\Eloquent\Builder; |
14 | 13 | use App\GraphQL\Serializers\RawSerializer; |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * For the full copyright and license information, please view the LICENSE |
5 | 5 | * file that was distributed with this source code. |
6 | 6 | */ |
7 | -declare(strict_types=1); |
|
7 | +declare(strict_types = 1); |
|
8 | 8 | |
9 | 9 | namespace App\GraphQL\Feature\Paginator; |
10 | 10 | |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | * @param string $alias |
83 | 83 | * @return PaginatorConfiguration |
84 | 84 | */ |
85 | - public static function find(string $alias): ?PaginatorConfiguration |
|
85 | + public static function find(string $alias): ? PaginatorConfiguration |
|
86 | 86 | { |
87 | 87 | foreach (self::$configs as $config) { |
88 | 88 | if ($config->getAlias() === $alias) { |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | */ |
115 | 115 | public function getPages(): int |
116 | 116 | { |
117 | - return (int)ceil($this->count / $this->getLimit()); |
|
117 | + return (int) ceil($this->count / $this->getLimit()); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | */ |
163 | 163 | public function getSkip(): int |
164 | 164 | { |
165 | - return (int)($this->page - 1) * $this->limit; |
|
165 | + return (int) ($this->page - 1) * $this->limit; |
|
166 | 166 | } |
167 | 167 | |
168 | 168 | /** |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | * @param null|string $serializer |
207 | 207 | * @return $this|PaginatorConfiguration |
208 | 208 | */ |
209 | - public function use(?string $serializer): PaginatorConfiguration |
|
209 | + public function use(? string $serializer) : PaginatorConfiguration |
|
210 | 210 | { |
211 | 211 | $this->serializer = $serializer; |
212 | 212 | |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | $query = clone $this->query; |
233 | 233 | |
234 | 234 | if ($this->limit !== null) { |
235 | - $query = $query->take((int)$this->limit); |
|
235 | + $query = $query->take((int) $this->limit); |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | if ($this->page > 0 && $this->limit !== null) { |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * For the full copyright and license information, please view the LICENSE |
5 | 5 | * file that was distributed with this source code. |
6 | 6 | */ |
7 | -declare(strict_types=1); |
|
7 | +declare(strict_types = 1); |
|
8 | 8 | |
9 | 9 | namespace App\GraphQL\Queries\Support; |
10 | 10 | |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | $validator = $factory->make($args, $rules, $this->messages()); |
32 | 32 | |
33 | - $validator->after(function ($validator) use ($args) { |
|
33 | + $validator->after(function($validator) use ($args) { |
|
34 | 34 | $this->afterValidation($validator, $args); |
35 | 35 | }); |
36 | 36 | |
@@ -57,14 +57,14 @@ discard block |
||
57 | 57 | * @param array $args |
58 | 58 | * @return \Generator|null |
59 | 59 | */ |
60 | - public function validate(Validator $validator, array $args = []): ?\Generator |
|
60 | + public function validate(Validator $validator, array $args = []): ? \Generator |
|
61 | 61 | { |
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
65 | 65 | * @return array |
66 | 66 | */ |
67 | - public function messages(): array |
|
67 | + public function messages() : array |
|
68 | 68 | { |
69 | 69 | return []; |
70 | 70 | } |