@@ -9,7 +9,6 @@ |
||
| 9 | 9 | namespace App\GraphQL\Types; |
| 10 | 10 | |
| 11 | 11 | use App\Models\DocsPage; |
| 12 | -use GraphQL\Type\Definition\ResolveInfo; |
|
| 13 | 12 | use GraphQL\Type\Definition\Type; |
| 14 | 13 | use App\GraphQL\Serializers\DocsPageSerializer; |
| 15 | 14 | use App\GraphQL\Queries\Support\WhereInSelection; |
@@ -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\Types; |
| 10 | 10 | |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | $query = $this->queryWithWhereIn($query, $args); |
| 93 | 93 | |
| 94 | - $this->whenExists($args, 'slug', function (string $slug) use ($query) { |
|
| 94 | + $this->whenExists($args, 'slug', function(string $slug) use ($query) { |
|
| 95 | 95 | return $query->where('slug', $slug); |
| 96 | 96 | }); |
| 97 | 97 | |
@@ -5,7 +5,7 @@ |
||
| 5 | 5 | * For the full copyright and license information, please view the LICENSE |
| 6 | 6 | * file that was distributed with this source code. |
| 7 | 7 | */ |
| 8 | -declare(strict_types=1); |
|
| 8 | +declare(strict_types = 1); |
|
| 9 | 9 | |
| 10 | 10 | namespace App\GraphQL\Kernel; |
| 11 | 11 | |