Passed
Push — 2.0 ( 3cd779...fe8057 )
by Kirill
03:09
created
server/app/GraphQL/Types/DocsType.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
server/app/GraphQL/Kernel/AttributeExists.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 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\Kernel;
11 11
 
Please login to merge, or discard this patch.