@@ -5,7 +5,7 @@ discard block |
||
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\Queries; |
11 | 11 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | $query = $this->queryWithWhereIn($query, $args); |
53 | 53 | |
54 | - $this->whenExists($args, 'slug', function (array $slug) use ($query) { |
|
54 | + $this->whenExists($args, 'slug', function(array $slug) use ($query) { |
|
55 | 55 | return $query->whereIn('slug', $slug); |
56 | 56 | }); |
57 | 57 |