Completed
Push — 2.0 ( fe8057...a5342d )
by Kirill
06:55
created
server/app/GraphQL/Mutations/RegistrationMutation.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 use App\Models\User;
12 12
 use Illuminate\Support\Arr;
13 13
 use GraphQL\Type\Definition\Type;
14
-use App\GraphQL\Types\AuthUserType;
15 14
 use App\GraphQL\Serializers\UserSerializer;
16 15
 
17 16
 /**
Please login to merge, or discard this patch.
server/app/GraphQL/Queries/AuthQuery.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 use App\Services\TokenAuth;
12 12
 use Illuminate\Support\Arr;
13 13
 use GraphQL\Type\Definition\Type;
14
-use App\GraphQL\Types\AuthUserType;
15 14
 use Illuminate\Contracts\Auth\Guard;
16 15
 use GraphQL\Type\Definition\ObjectType;
17 16
 use Illuminate\Contracts\Auth\StatefulGuard;
Please login to merge, or discard this patch.
server/app/GraphQL/Queries/DocsQuery.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 namespace App\GraphQL\Queries;
10 10
 
11 11
 use App\Models\Docs;
12
-use App\GraphQL\Types\DocsType;
13 12
 use GraphQL\Type\Definition\Type;
14 13
 use Illuminate\Database\Eloquent\Builder;
15 14
 use Illuminate\Support\Collection;
Please login to merge, or discard this patch.
server/app/GraphQL/Queries/SearchQuery.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,6 @@
 block discarded – undo
10 10
 
11 11
 use GraphQL\Type\Definition\Type;
12 12
 use Illuminate\Support\Collection;
13
-use Folklore\GraphQL\Support\Query;
14
-use App\GraphQL\Types\SearchResultType;
15 13
 use GraphQL\Type\Definition\ListOfType;
16 14
 use Service\SearchService\SearchService;
17 15
 use App\GraphQL\Serializers\SearchResultsSerializer;
Please login to merge, or discard this patch.
server/app/GraphQL/Queries/TagsQuery.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace App\GraphQL\Queries;
12 12
 
13 13
 use App\Models\Tag;
14
-use App\GraphQL\Types\TagType;
15 14
 use GraphQL\Type\Definition\Type;
16 15
 use Illuminate\Support\Collection;
17 16
 use GraphQL\Type\Definition\ListOfType;
Please login to merge, or discard this patch.
server/app/GraphQL/Queries/TipsQuery.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 namespace App\GraphQL\Queries;
11 11
 
12 12
 use App\Models\Tip;
13
-use App\GraphQL\Types\TipType;
14 13
 use GraphQL\Type\Definition\Type;
15 14
 use Illuminate\Support\Collection;
16 15
 use Illuminate\Database\Query\Builder;
Please login to merge, or discard this patch.
server/app/GraphQL/Queries/UsersQuery.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 namespace App\GraphQL\Queries;
11 11
 
12 12
 use App\Models\User;
13
-use App\GraphQL\Types\UserType;
14 13
 use GraphQL\Type\Definition\Type;
15 14
 use Illuminate\Support\Collection;
16 15
 use GraphQL\Type\Definition\ListOfType;
Please login to merge, or discard this patch.
server/app/GraphQL/Kernel/WhereInSelection.php 1 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\Kernel;
10 10
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         return array_merge($args, [
28 28
             'id'  => [
29 29
                 'type'        => Type::listOf(Type::id()),
30
-                'description' => 'Select ' . $this->getQueryName() . ' by identifier or identifier array',
30
+                'description' => 'Select '.$this->getQueryName().' by identifier or identifier array',
31 31
             ],
32 32
         ]);
33 33
     }
Please login to merge, or discard this patch.