Completed
Push — 2.0 ( b1a912...16ebc6 )
by Kirill
03:06
created
server/app/GraphQL/Queries/ArticlesQuery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.