Completed
Push — master ( da1622...d3aaf0 )
by Alexandr
02:54
created
Tests/Library/Config/ConfigTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             ]
81 81
         ]);
82 82
 
83
-        $finalConfig = new TestConfig(['name' => $name . 'final', 'resolve' => function () { return []; }], $object, true);
83
+        $finalConfig = new TestConfig(['name' => $name.'final', 'resolve' => function() { return []; }], $object, true);
84 84
         $this->assertEquals($finalConfig->getType(), null);
85 85
 
86 86
         $rules['resolve']['required'] = true;
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      */
101 101
     public function testFinalRule()
102 102
     {
103
-        ConfigValidator::getInstance()->assertValidConfig(new TestConfig(['name' => 'Test' . 'final'], null, true));
103
+        ConfigValidator::getInstance()->assertValidConfig(new TestConfig(['name' => 'Test'.'final'], null, true));
104 104
     }
105 105
 
106 106
     /**
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                 ]
128 128
             ]
129 129
         ]);
130
-        $object   = new ObjectType([
130
+        $object = new ObjectType([
131 131
             'name' => 'Project',
132 132
             'fields' => [
133 133
                 'id' => new IdType(),
Please login to merge, or discard this patch.
Tests/Schema/InputParseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
                             'from'   => new DateTimeType(),
31 31
                             'fromtz' => new DateTimeTzType(),
32 32
                         ],
33
-                        'resolve' => function ($source, $args) {
33
+                        'resolve' => function($source, $args) {
34 34
                             return sprintf('Result with %s date and %s tz',
35 35
                                 empty($args['from']) ? 'default' : $args['from'],
36 36
                                 empty($args['fromtz']) ? 'default' : $args['fromtz']
Please login to merge, or discard this patch.
src/Execution/Reducer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      * Fragments (anonymous and named), and Fields.  The core of the function is simple: recurse until we hit the base
93 93
      * case of a Field and yield that back up to the visitor up in `doVisit`.
94 94
      *
95
-     * @param Query|Field|\Youshido\GraphQL\Parser\Ast\Interfaces\FragmentInterface $queryNode
95
+     * @param Query $queryNode
96 96
      * @param FieldInterface                                                        $currentLevelAST
97 97
      *
98 98
      * @return \Generator
Please login to merge, or discard this patch.
src/Parser/Parser.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -294,7 +294,7 @@
 block discarded – undo
294 294
     }
295 295
 
296 296
     /**
297
-     * @return array|InputList|InputObject|Literal|VariableReference
297
+     * @return Ast\Interfaces\ValueInterface
298 298
      *
299 299
      * @throws SyntaxErrorException
300 300
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -271,7 +271,7 @@
 block discarded – undo
271 271
             if ($first) {
272 272
                 $first = false;
273 273
             } else {
274
-                if($this->match(Token::TYPE_COMMA)) {
274
+                if ($this->match(Token::TYPE_COMMA)) {
275 275
                     $this->eat(Token::TYPE_COMMA);
276 276
                 }
277 277
             }
Please login to merge, or discard this patch.
src/Parser/Token.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -51,6 +51,10 @@
 block discarded – undo
51 51
     /** @var integer */
52 52
     private $column;
53 53
 
54
+    /**
55
+     * @param integer $line
56
+     * @param integer $column
57
+     */
54 58
     public function __construct($type, $line, $column, $data = null)
55 59
     {
56 60
         $this->type = $type;
Please login to merge, or discard this patch.
Tests/Schema/SchemaTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
             'fields' => [
30 30
                 'currentTime' => [
31 31
                     'type'    => new StringType(),
32
-                    'resolve' => function ($value, $args, $type) {
32
+                    'resolve' => function($value, $args, $type) {
33 33
                         return 'May 5, 9:00am';
34 34
                     },
35 35
                     'args'    => [
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
         $this->assertEquals(1, count($schema->getMutationType()->getFields()));
60 60
 
61
-        $schema->addMutationField('changeUser', ['type' => new TestObjectType(), 'resolve' => function () {
61
+        $schema->addMutationField('changeUser', ['type' => new TestObjectType(), 'resolve' => function() {
62 62
         }]);
63 63
         $this->assertEquals(2, count($schema->getMutationType()->getFields()));
64 64
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
             'fields'      => [
91 91
                 'name' => new StringType(),
92 92
             ],
93
-            'resolveType' => function () use ($authorType) {
93
+            'resolveType' => function() use ($authorType) {
94 94
                 return $authorType;
95 95
             }
96 96
         ]);
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
                 'fields' => [
110 110
                     'user' => [
111 111
                         'type'    => $userInterface,
112
-                        'resolve' => function () {
112
+                        'resolve' => function() {
113 113
                             return [
114 114
                                 'name' => 'Alex'
115 115
                             ];
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/Parser/RequestTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
 
19 19
     public function testMethods()
20 20
     {
21
-        $fragment1     = new Fragment('fragmentName1', 'test', [], new Location(1,1));
22
-        $fragment2     = new Fragment('fragmentName2', 'test', [], new Location(1,1));
21
+        $fragment1     = new Fragment('fragmentName1', 'test', [], new Location(1, 1));
22
+        $fragment2     = new Fragment('fragmentName2', 'test', [], new Location(1, 1));
23 23
         $queriesData   = ['query1', 'query2'];
24 24
         $mutationsData = ['mutation1', 'mutation2'];
25 25
         $fragmentsData = [$fragment1];
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     public function testSetVariableParseJson()
55 55
     {
56 56
         $variables = '{"foo": "bar"}';
57
-        $expectedVariableArray = [ 'foo' => 'bar' ];
57
+        $expectedVariableArray = ['foo' => 'bar'];
58 58
 
59 59
         $request = new Request([], $variables);
60 60
         $this->assertEquals($expectedVariableArray, $request->getVariables());
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, new Location(1,1));
174
+        $variable = new Variable('id', 'int', false, false, 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, new Location(1,1));
202
+        $variable = new Variable('id', 'int', false, false, new Location(1, 1));
203 203
         $variable->getValue();
204 204
     }
205 205
 }
Please login to merge, or discard this patch.