Completed
Push — master ( ffd66f...8de122 )
by Alexandr
03:45 queued 35s
created
src/Type/TypeFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,13 +34,13 @@
 block discarded – undo
34 34
                 $name = $name == 'Datetime' ? 'DateTime' : $name;
35 35
                 $name = $name == 'Datetimetz' ? 'DateTimeTz' : $name;
36 36
 
37
-                $className                = 'Youshido\GraphQL\Type\Scalar\\' . $name . 'Type';
37
+                $className                = 'Youshido\GraphQL\Type\Scalar\\'.$name.'Type';
38 38
                 self::$objectsHash[$type] = new $className();
39 39
             }
40 40
 
41 41
             return self::$objectsHash[$type];
42 42
         } else {
43
-            throw new ConfigurationException('Configuration problem with type ' . $type);
43
+            throw new ConfigurationException('Configuration problem with type '.$type);
44 44
         }
45 45
     }
46 46
 
Please login to merge, or discard this patch.
src/Introspection/Field/TypesField.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         }
46 46
 
47 47
         foreach ($value->getTypesList()->getTypes() as $type) {
48
-          $this->collectTypes($type);
48
+            $this->collectTypes($type);
49 49
         }
50 50
 
51 51
         return array_values($this->types);
Please login to merge, or discard this patch.
src/Introspection/Traits/TypeCollectorTrait.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,9 @@
 block discarded – undo
20 20
 
21 21
     protected function collectTypes(AbstractType $type)
22 22
     {
23
-        if (is_object($type) && array_key_exists($type->getName(), $this->types)) return;
23
+        if (is_object($type) && array_key_exists($type->getName(), $this->types)) {
24
+            return;
25
+        }
24 26
 
25 27
         switch ($type->getKind()) {
26 28
             case TypeMap::KIND_INTERFACE:
Please login to merge, or discard this patch.
src/Validator/ResolveValidator/ResolveValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     public function assertValidArguments(FieldInterface $field, AstFieldInterface $query, Request $request)
35 35
     {
36
-        $requiredArguments = array_filter($field->getArguments(), function (InputField $argument) {
36
+        $requiredArguments = array_filter($field->getArguments(), function(InputField $argument) {
37 37
             return $argument->getType()->getKind() === TypeMap::KIND_NON_NULL;
38 38
         });
39 39
 
Please login to merge, or discard this patch.
Tests/Issues/Issue99/Issue99Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
         self::assertTrue(isset($res['data']['items']));
24 24
 
25
-        foreach($res['data']['items'] as $item) {
25
+        foreach ($res['data']['items'] as $item) {
26 26
             self::assertTrue(isset($item['custom']['value']));
27 27
             self::assertEquals(self::BUG_NOT_EXISTS_VALUE, $item['custom']['value']);
28 28
         }
Please login to merge, or discard this patch.
Tests/Issues/Issue99/Issue99Schema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
                         'args'    => [
53 53
                             'example' => new StringType()
54 54
                         ],
55
-                        'resolve' => function () {
55
+                        'resolve' => function() {
56 56
                             return [
57 57
                                 ['id' => 1],
58 58
                                 ['id' => 2],
Please login to merge, or discard this patch.
src/Execution/Processor.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
 use Youshido\GraphQL\Parser\Ast\Interfaces\FieldInterface as AstFieldInterface;
25 25
 use Youshido\GraphQL\Parser\Ast\Mutation as AstMutation;
26 26
 use Youshido\GraphQL\Parser\Ast\Query as AstQuery;
27
-use Youshido\GraphQL\Parser\Ast\Query;
28 27
 use Youshido\GraphQL\Parser\Ast\TypedFragmentReference;
29 28
 use Youshido\GraphQL\Parser\Parser;
30 29
 use Youshido\GraphQL\Schema\AbstractSchema;
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -185,6 +185,9 @@
 block discarded – undo
185 185
         }
186 186
     }
187 187
 
188
+    /**
189
+     * @param \Youshido\GraphQL\Parser\Ast\Interfaces\ValueInterface $argumentValue
190
+     */
188 191
     private function prepareArgumentValue($argumentValue, AbstractType $argumentType, Request $request)
189 192
     {
190 193
         switch ($argumentType->getKind()) {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
         $result = [];
402 402
         foreach ($resolvedValue as $resolvedValueItem) {
403 403
             try {
404
-                $fakeField->getConfig()->set('resolve', function () use ($resolvedValueItem) {
404
+                $fakeField->getConfig()->set('resolve', function() use ($resolvedValueItem) {
405 405
                     return $resolvedValueItem;
406 406
                 });
407 407
 
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
         }
452 452
 
453 453
         /** @var AbstractUnionType $type */
454
-        $type         = $field->getType()->getNullableType();
454
+        $type = $field->getType()->getNullableType();
455 455
         $resolveInfo = new ResolveInfo(
456 456
             $field,
457 457
             $ast instanceof AstQuery ? $ast->getFields() : [],
Please login to merge, or discard this patch.
src/Execution/Request.php 3 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,6 +223,9 @@  discard block
 block discarded – undo
223 223
         return $this;
224 224
     }
225 225
 
226
+    /**
227
+     * @param string $name
228
+     */
226 229
     public function getVariable($name)
227 230
     {
228 231
         return $this->hasVariable($name) ? $this->variables[$name] : null;
@@ -266,7 +269,7 @@  discard block
 block discarded – undo
266 269
     }
267 270
 
268 271
     /**
269
-     * @return array|VariableReference[]
272
+     * @return VariableReference[]
270 273
      */
271 274
     public function getVariableReferences()
272 275
     {
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -219,11 +219,15 @@
 block discarded – undo
219 219
         $this->variables = $variables;
220 220
         foreach ($this->variableReferences as $reference) {
221 221
             /** invalid request with no variable */
222
-            if (!$reference->getVariable()) continue;
222
+            if (!$reference->getVariable()) {
223
+                continue;
224
+            }
223 225
             $variableName = $reference->getVariable()->getName();
224 226
 
225 227
             /** no variable was set at the time */
226
-            if (!array_key_exists($variableName, $variables)) continue;
228
+            if (!array_key_exists($variableName, $variables)) {
229
+                continue;
230
+            }
227 231
 
228 232
             $reference->getVariable()->setValue($variables[$variableName]);
229 233
             $reference->setValue($variables[$variableName]);
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -8,14 +8,12 @@
 block discarded – undo
8 8
 namespace Youshido\GraphQL\Execution;
9 9
 
10 10
 use Youshido\GraphQL\Exception\Parser\InvalidRequestException;
11
-use Youshido\GraphQL\Parser\Ast\ArgumentValue\Literal;
12 11
 use Youshido\GraphQL\Parser\Ast\ArgumentValue\Variable;
13 12
 use Youshido\GraphQL\Parser\Ast\ArgumentValue\VariableReference;
14 13
 use Youshido\GraphQL\Parser\Ast\Fragment;
15 14
 use Youshido\GraphQL\Parser\Ast\FragmentReference;
16 15
 use Youshido\GraphQL\Parser\Ast\Mutation;
17 16
 use Youshido\GraphQL\Parser\Ast\Query;
18
-use Youshido\GraphQL\Parser\Location;
19 17
 
20 18
 class Request
21 19
 {
Please login to merge, or discard this patch.
Tests/Issues/Issue109/Issue109Schema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
                                 ]
41 41
                             ]
42 42
                         ]),
43
-                        'resolve' => function ($source, array $args, ResolveInfo $info) {
43
+                        'resolve' => function($source, array $args, ResolveInfo $info) {
44 44
                             $internalArgs = [
45 45
                                 'comment_id' => 200
46 46
                             ];
Please login to merge, or discard this patch.