Completed
Push — master ( f954c7...24bdc2 )
by Alexandr
12s
created
src/Introspection/DirectiveType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
                 'type'    => new NonNullType(new ListType(new NonNullType(new InputValueType()))),
60 60
                 'resolve' => [$this, 'resolveArgs'],
61 61
             ])
62
-            ->addField('locations',[
62
+            ->addField('locations', [
63 63
                 'type'  =>  new NonNullType(new ListType(new NonNullType(new DirectiveLocationType()))),
64 64
                 'resolve' => [$this, 'resolveLocations'],
65 65
             ]);
Please login to merge, or discard this patch.
src/Config/Traits/DirectivesAwareConfigTrait.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,9 @@
 block discarded – undo
18 18
 
19 19
     public function buildDirectives()
20 20
     {
21
-        if ($this->_isDirectivesBuilt) return true;
21
+        if ($this->_isDirectivesBuilt) {
22
+            return true;
23
+        }
22 24
 
23 25
         if (!empty($this->data['directives'])) {
24 26
             $this->addDirectives($this->data['directives']);
Please login to merge, or discard this patch.
src/Parser/Tokenizer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -253,9 +253,9 @@
 block discarded – undo
253 253
         $value = substr($this->source, $start, $this->pos - $start);
254 254
 
255 255
         if (strpos($value, '.') === false) {
256
-            $value = (int) $value;
256
+            $value = (int)$value;
257 257
         } else {
258
-            $value = (float) $value;
258
+            $value = (float)$value;
259 259
         }
260 260
 
261 261
         return new Token(Token::TYPE_NUMBER, $this->getLine(), $this->getColumn(), $value);
Please login to merge, or discard this patch.
src/Parser/Parser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 
236 236
     protected function findVariable($name)
237 237
     {
238
-        foreach ((array) $this->data['variables'] as $variable) {
238
+        foreach ((array)$this->data['variables'] as $variable) {
239 239
             /** @var $variable Variable */
240 240
             if ($variable->getName() === $name) {
241 241
                 return $variable;
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
 
479 479
     protected function matchMulti($types)
480 480
     {
481
-        foreach ((array) $types as $type) {
481
+        foreach ((array)$types as $type) {
482 482
             if ($this->peek()->getType() === $type) {
483 483
                 return true;
484 484
             }
Please login to merge, or discard this patch.
src/Validator/ResolveValidator/ResolveValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     {
27 27
         /** @var AbstractObjectType $objectType */
28 28
         if (!(TypeService::isObjectType($objectType) || TypeService::isInputObjectType($objectType)) || !$objectType->hasField($ast->getName())) {
29
-            $availableFieldNames = implode(', ', array_map(function (FieldInterface $field) {
29
+            $availableFieldNames = implode(', ', array_map(function(FieldInterface $field) {
30 30
                 return sprintf('"%s"', $field->getName());
31 31
             }, $objectType->getFields()));
32 32
             throw new ResolveException(sprintf('Field "%s" not found in type "%s". Available fields are: %s', $ast->getName(), $objectType->getNamedType()->getName(), $availableFieldNames), $ast->getLocation());
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     public function assertValidArguments(FieldInterface $field, AstFieldInterface $query, Request $request)
37 37
     {
38
-        $requiredArguments = array_filter($field->getArguments(), function (InputField $argument) {
38
+        $requiredArguments = array_filter($field->getArguments(), function(InputField $argument) {
39 39
             return $argument->getType()->getKind() === TypeMap::KIND_NON_NULL;
40 40
         });
41 41
 
Please login to merge, or discard this patch.
Tests/Schema/ResolveInfoTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 {
22 22
     public function testMethods()
23 23
     {
24
-        $fieldAst         = new FieldAST('name', null, [], [], new Location(1,1));
24
+        $fieldAst         = new FieldAST('name', null, [], [], new Location(1, 1));
25 25
         $field            = new Field(['name' => 'id', 'type' => new IntType()]);
26 26
         $returnType       = new IntType();
27 27
         $executionContext = new ExecutionContext(new TestSchema());
Please login to merge, or discard this patch.
Tests/Schema/IntrospectionTest.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
             'description'       => 'latest description',
137 137
             'deprecationReason' => 'for test',
138 138
             'isDeprecated'      => true,
139
-            'resolve'           => function () {
139
+            'resolve'           => function() {
140 140
                 return [
141 141
                     'id'   => 1,
142 142
                     'name' => 'Alex'
@@ -202,9 +202,9 @@  discard block
 block discarded – undo
202 202
                                 ['name' => 'String', 'fields' => null],
203 203
                                 ['name' => '__Schema', 'fields' => [['name' => 'queryType', 'args' => []], ['name' => 'mutationType', 'args' => []], ['name' => 'subscriptionType', 'args' => []], ['name' => 'types', 'args' => []], ['name' => 'directives', 'args' => []]]],
204 204
                                 ['name' => '__Type', 'fields' => [['name' => 'name', 'args' => []], ['name' => 'kind', 'args' => []], ['name' => 'description', 'args' => []], ['name' => 'ofType', 'args' => []], ['name' => 'inputFields', 'args' => []], ['name' => 'enumValues', 'args' => [['defaultValue' => 'false']]], ['name' => 'fields', 'args' => [['defaultValue' => 'false']]], ['name' => 'interfaces', 'args' => []], ['name' => 'possibleTypes', 'args' => []]]],
205
-                                ['name' => '__InputValue', 'fields' => [['name' => 'name', 'args' => []], ['name' => 'description', 'args' => []], ['name' => 'type', 'args' => []], ['name' => 'defaultValue', 'args' => []],]],
205
+                                ['name' => '__InputValue', 'fields' => [['name' => 'name', 'args' => []], ['name' => 'description', 'args' => []], ['name' => 'type', 'args' => []], ['name' => 'defaultValue', 'args' => []], ]],
206 206
                                 ['name' => 'Boolean', 'fields' => null],
207
-                                ['name' => '__EnumValue', 'fields' => [['name' => 'name', 'args' => []], ['name' => 'description', 'args' => []], ['name' => 'deprecationReason', 'args' => []], ['name' => 'isDeprecated', 'args' => []],]],
207
+                                ['name' => '__EnumValue', 'fields' => [['name' => 'name', 'args' => []], ['name' => 'description', 'args' => []], ['name' => 'deprecationReason', 'args' => []], ['name' => 'isDeprecated', 'args' => []], ]],
208 208
                                 ['name' => '__Field', 'fields' => [['name' => 'name', 'args' => []], ['name' => 'description', 'args' => []], ['name' => 'isDeprecated', 'args' => []], ['name' => 'deprecationReason', 'args' => []], ['name' => 'type', 'args' => []], ['name' => 'args', 'args' => []]]],
209 209
                                 ['name' => '__Directive', 'fields' => [['name' => 'name', 'args' => []], ['name' => 'description', 'args' => []], ['name' => 'args', 'args' => []], ['name' => 'locations', 'args' => []]]],
210 210
                                 ['name' => '__DirectiveLocation', 'fields' => null],
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
                 'id'   => ['type' => new IntType()],
293 293
                 'name' => ['type' => new IntType()],
294 294
             ],
295
-            'resolveType' => function ($type) {
295
+            'resolveType' => function($type) {
296 296
 
297 297
             }
298 298
         ]);
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
         $unionType = new UnionType([
321 321
             'name'        => 'UnionType',
322 322
             'types'       => [$object1, $object2],
323
-            'resolveType' => function () {
323
+            'resolveType' => function() {
324 324
 
325 325
             }
326 326
         ]);
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
             'args'    => [
332 332
                 'id' => ['type' => TypeMap::TYPE_INT]
333 333
             ],
334
-            'resolve' => function () {
334
+            'resolve' => function() {
335 335
                 return [
336 336
                     'id'   => 1,
337 337
                     'name' => 'Alex'
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
                     ]
358 358
                 ])
359 359
             ],
360
-            'resolve' => function () {
360
+            'resolve' => function() {
361 361
                 return null;
362 362
             }
363 363
         ]));
Please login to merge, or discard this patch.
Tests/Library/Validator/RequestValidatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
                             new Argument('test2', new VariableReference('test2', $variable2, new Location(1, 1)), new Location(1, 1)),
113 113
                         ], [
114 114
                             new Field('test', null, [], [], new Location(1, 1))
115
-                        ], [], new Location(1,1))
115
+                        ], [], new Location(1, 1))
116 116
                     ],
117 117
                     'variables'          => [
118 118
                         $variable1,
Please login to merge, or discard this patch.
Tests/Parser/AstTest.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     public function testArgument()
27 27
     {
28
-        $argument = new Argument('test', new Literal('test', new Location(1,1)), new Location(1,1));
28
+        $argument = new Argument('test', new Literal('test', new Location(1, 1)), new Location(1, 1));
29 29
 
30 30
         $this->assertNotNull($argument->getValue());
31 31
         $this->assertEquals($argument->getName(), 'test');
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function testField()
41 41
     {
42
-        $field = new Field('field', null, [], [], new Location(1,1));
42
+        $field = new Field('field', null, [], [], new Location(1, 1));
43 43
 
44 44
         $this->assertEquals($field->getName(), 'field');
45 45
         $this->assertEmpty($field->getArguments());
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         $this->assertEquals($field->getAlias(), 'alias');
51 51
         $this->assertEquals($field->getName(), 'alias');
52 52
 
53
-        $field->addArgument(new Argument('argument', new Literal('argument value', new Location(1,1)), new Location(1,1)));
53
+        $field->addArgument(new Argument('argument', new Literal('argument value', new Location(1, 1)), new Location(1, 1)));
54 54
         $this->assertTrue($field->hasArguments());
55 55
         $this->assertEquals(['argument' => 'argument value'], $field->getKeyValueArguments());
56 56
     }
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
     public function testFragment()
59 59
     {
60 60
         $fields = [
61
-            new Field('field', null, [], [], new Location(1,1))
61
+            new Field('field', null, [], [], new Location(1, 1))
62 62
         ];
63 63
 
64
-        $fragment = new Fragment('shipInfo', 'Ship', [], $fields, new Location(1,1));
64
+        $fragment = new Fragment('shipInfo', 'Ship', [], $fields, new Location(1, 1));
65 65
 
66 66
         $this->assertEquals('shipInfo', $fragment->getName());
67 67
         $this->assertEquals('Ship', $fragment->getModel());
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         $this->assertEquals('Boat', $fragment->getModel());
75 75
 
76 76
         $newField = [
77
-            new Field('id', null, [], [], new Location(1,1))
77
+            new Field('id', null, [], [], new Location(1, 1))
78 78
         ];
79 79
         $fragment->setFields($newField);
80 80
         $this->assertEquals($newField, $fragment->getFields());
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
     public function testFragmentReference()
88 88
     {
89
-        $reference = new FragmentReference('shipInfo', new Location(1,1));
89
+        $reference = new FragmentReference('shipInfo', new Location(1, 1));
90 90
 
91 91
         $this->assertEquals('shipInfo', $reference->getName());
92 92
 
@@ -97,10 +97,10 @@  discard block
 block discarded – undo
97 97
     public function testTypedFragmentReference()
98 98
     {
99 99
         $fields = [
100
-            new Field('id', null, [], [], new Location(1,1))
100
+            new Field('id', null, [], [], new Location(1, 1))
101 101
         ];
102 102
 
103
-        $reference = new TypedFragmentReference('Ship', $fields, [], new Location(1,1));
103
+        $reference = new TypedFragmentReference('Ship', $fields, [], new Location(1, 1));
104 104
 
105 105
         $this->assertEquals('Ship', $reference->getTypeName());
106 106
         $this->assertEquals($fields, $reference->getFields());
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
         $this->assertEquals('BigBoat', $reference->getTypeName());
110 110
 
111 111
         $newFields = [
112
-            new Field('name', null, [], [], new Location(1,1)),
113
-            new Field('id', null, [], [], new Location(1,1))
112
+            new Field('name', null, [], [], new Location(1, 1)),
113
+            new Field('id', null, [], [], new Location(1, 1))
114 114
         ];
115 115
 
116 116
         $reference->setFields($newFields);
@@ -120,14 +120,14 @@  discard block
 block discarded – undo
120 120
     public function testQuery()
121 121
     {
122 122
         $arguments = [
123
-            new Argument('limit', new Literal('10', new Location(1,1)), new Location(1,1))
123
+            new Argument('limit', new Literal('10', new Location(1, 1)), new Location(1, 1))
124 124
         ];
125 125
 
126 126
         $fields = [
127
-            new Field('id', null, [], [], new Location(1,1))
127
+            new Field('id', null, [], [], new Location(1, 1))
128 128
         ];
129 129
 
130
-        $query = new Query('ships', 'lastShips', $arguments, $fields,[], new Location(1,1));
130
+        $query = new Query('ships', 'lastShips', $arguments, $fields, [], new Location(1, 1));
131 131
 
132 132
         $this->assertEquals('ships', $query->getName());
133 133
         $this->assertEquals('lastShips', $query->getAlias());
@@ -147,23 +147,23 @@  discard block
 block discarded – undo
147 147
         $this->assertFalse($query->hasArguments());
148 148
         $this->assertFalse($query->hasFields());
149 149
 
150
-        $query->addArgument(new Argument('offset', new Literal(10, new Location(1,1)), new Location(1,1)));
150
+        $query->addArgument(new Argument('offset', new Literal(10, new Location(1, 1)), new Location(1, 1)));
151 151
         $this->assertTrue($query->hasArguments());
152 152
     }
153 153
 
154 154
     public function testArgumentValues()
155 155
     {
156
-        $list = new InputList(['a', 'b'], new Location(1,1));
156
+        $list = new InputList(['a', 'b'], new Location(1, 1));
157 157
         $this->assertEquals(['a', 'b'], $list->getValue());
158 158
         $list->setValue(['a']);
159 159
         $this->assertEquals(['a'], $list->getValue());
160 160
 
161
-        $inputObject = new InputObject(['a', 'b'], new Location(1,1));
161
+        $inputObject = new InputObject(['a', 'b'], new Location(1, 1));
162 162
         $this->assertEquals(['a', 'b'], $inputObject->getValue());
163 163
         $inputObject->setValue(['a']);
164 164
         $this->assertEquals(['a'], $inputObject->getValue());
165 165
 
166
-        $literal = new Literal('text', new Location(1,1));
166
+        $literal = new Literal('text', new Location(1, 1));
167 167
         $this->assertEquals('text', $literal->getValue());
168 168
         $literal->setValue('new text');
169 169
         $this->assertEquals('new text', $literal->getValue());
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 
172 172
     public function testVariable()
173 173
     {
174
-        $variable = new Variable('id', 'int', false, false, true, new Location(1,1));
174
+        $variable = new Variable('id', 'int', false, false, true, new Location(1, 1));
175 175
 
176 176
         $this->assertEquals('id', $variable->getName());
177 177
         $this->assertEquals('int', $variable->getTypeName());
@@ -190,8 +190,8 @@  discard block
 block discarded – undo
190 190
         $this->assertTrue($variable->isNullable());
191 191
         $this->assertTrue($variable->isArray());
192 192
 
193
-        $variable->setValue(new Literal('text', new Location(1,1)));
194
-        $this->assertEquals(new Literal('text', new Location(1,1)), $variable->getValue());
193
+        $variable->setValue(new Literal('text', new Location(1, 1)));
194
+        $this->assertEquals(new Literal('text', new Location(1, 1)), $variable->getValue());
195 195
     }
196 196
 
197 197
     /**
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
      */
200 200
     public function testVariableLogicException()
201 201
     {
202
-        $variable = new Variable('id', 'int', false, false, true, new Location(1,1));
202
+        $variable = new Variable('id', 'int', false, false, true, new Location(1, 1));
203 203
         $variable->getValue();
204 204
     }
205 205
 }
Please login to merge, or discard this patch.