@@ -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 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | { |
48 | 48 | $query = $this->queryFor(Article::class, $args); |
49 | 49 | |
50 | - $this->whenExists($args, 'slug', function (string $slug) use ($query) { |
|
50 | + $this->whenExists($args, 'slug', function(string $slug) use ($query) { |
|
51 | 51 | return $query->where('slug', $slug); |
52 | 52 | }); |
53 | 53 |