@@ -53,7 +53,7 @@ |
||
| 53 | 53 | $this->memo += $cost; |
| 54 | 54 | |
| 55 | 55 | if ($this->memo > $this->maxScore) { |
| 56 | - throw new \Exception('query exceeded max allowed complexity of ' . $this->maxScore); |
|
| 56 | + throw new \Exception('query exceeded max allowed complexity of '.$this->maxScore); |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | return $cost; |
@@ -96,14 +96,14 @@ discard block |
||
| 96 | 96 | 'fields' => [ |
| 97 | 97 | 'list' => [ |
| 98 | 98 | 'type' => new ListType(new StringType()), |
| 99 | - 'resolve' => function () { |
|
| 99 | + 'resolve' => function() { |
|
| 100 | 100 | return null; |
| 101 | 101 | } |
| 102 | 102 | ] |
| 103 | 103 | ] |
| 104 | 104 | ]) |
| 105 | 105 | ])); |
| 106 | - $data = $processor->processPayload(' { list }')->getResponseData(); |
|
| 106 | + $data = $processor->processPayload(' { list }')->getResponseData(); |
|
| 107 | 107 | $this->assertEquals(['data' => ['list' => null]], $data); |
| 108 | 108 | } |
| 109 | 109 | |
@@ -116,20 +116,20 @@ discard block |
||
| 116 | 116 | 'fields' => [ |
| 117 | 117 | 'list' => [ |
| 118 | 118 | 'type' => new ListType(new StringType()), |
| 119 | - 'resolve' => function () { |
|
| 119 | + 'resolve' => function() { |
|
| 120 | 120 | return null; |
| 121 | 121 | } |
| 122 | 122 | ] |
| 123 | 123 | ] |
| 124 | 124 | ]) |
| 125 | 125 | ])); |
| 126 | - $data = $processor->processPayload(' { __schema { subscriptionType { name } } }')->getResponseData(); |
|
| 126 | + $data = $processor->processPayload(' { __schema { subscriptionType { name } } }')->getResponseData(); |
|
| 127 | 127 | $this->assertEquals(['data' => ['__schema' => ['subscriptionType' => null]]], $data); |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | public function testSchemaOperations() |
| 131 | 131 | { |
| 132 | - $schema = new Schema([ |
|
| 132 | + $schema = new Schema([ |
|
| 133 | 133 | 'query' => new ObjectType([ |
| 134 | 134 | 'name' => 'RootQuery', |
| 135 | 135 | 'fields' => [ |
@@ -142,13 +142,13 @@ discard block |
||
| 142 | 142 | 'args' => [ |
| 143 | 143 | 'shorten' => new BooleanType() |
| 144 | 144 | ], |
| 145 | - 'resolve' => function ($value, $args) { |
|
| 145 | + 'resolve' => function($value, $args) { |
|
| 146 | 146 | return empty($args['shorten']) ? $value['firstName'] : $value['firstName']; |
| 147 | 147 | } |
| 148 | 148 | ], |
| 149 | 149 | 'id_alias' => [ |
| 150 | 150 | 'type' => new IdType(), |
| 151 | - 'resolve' => function ($value) { |
|
| 151 | + 'resolve' => function($value) { |
|
| 152 | 152 | return $value['id']; |
| 153 | 153 | } |
| 154 | 154 | ], |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | 'code' => new StringType(), |
| 157 | 157 | ] |
| 158 | 158 | ]), |
| 159 | - 'resolve' => function ($value, $args) { |
|
| 159 | + 'resolve' => function($value, $args) { |
|
| 160 | 160 | $data = ['id' => '123', 'firstName' => 'John', 'code' => '007']; |
| 161 | 161 | if (!empty($args['upper'])) { |
| 162 | 162 | foreach ($data as $key => $value) { |
@@ -175,19 +175,19 @@ discard block |
||
| 175 | 175 | ], |
| 176 | 176 | 'randomUser' => [ |
| 177 | 177 | 'type' => new TestObjectType(), |
| 178 | - 'resolve' => function () { |
|
| 178 | + 'resolve' => function() { |
|
| 179 | 179 | return ['invalidField' => 'John']; |
| 180 | 180 | } |
| 181 | 181 | ], |
| 182 | 182 | 'invalidValueQuery' => [ |
| 183 | 183 | 'type' => new TestObjectType(), |
| 184 | - 'resolve' => function () { |
|
| 184 | + 'resolve' => function() { |
|
| 185 | 185 | return 'stringValue'; |
| 186 | 186 | } |
| 187 | 187 | ], |
| 188 | 188 | 'labels' => [ |
| 189 | 189 | 'type' => new ListType(new StringType()), |
| 190 | - 'resolve' => function () { |
|
| 190 | + 'resolve' => function() { |
|
| 191 | 191 | return ['one', 'two']; |
| 192 | 192 | } |
| 193 | 193 | ] |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | ->addField(new Field([ |
| 219 | 219 | 'name' => 'increaseCounter', |
| 220 | 220 | 'type' => new IntType(), |
| 221 | - 'resolve' => function ($value, $args, ResolveInfo $info) { |
|
| 221 | + 'resolve' => function($value, $args, ResolveInfo $info) { |
|
| 222 | 222 | return $this->_counter += $args['amount']; |
| 223 | 223 | }, |
| 224 | 224 | 'args' => [ |
@@ -230,13 +230,13 @@ discard block |
||
| 230 | 230 | ]))->addField(new Field([ |
| 231 | 231 | 'name' => 'invalidResolveTypeMutation', |
| 232 | 232 | 'type' => new NonNullType(new IntType()), |
| 233 | - 'resolve' => function () { |
|
| 233 | + 'resolve' => function() { |
|
| 234 | 234 | return null; |
| 235 | 235 | } |
| 236 | 236 | ]))->addField(new Field([ |
| 237 | 237 | 'name' => 'interfacedMutation', |
| 238 | 238 | 'type' => new TestInterfaceType(), |
| 239 | - 'resolve' => function () { |
|
| 239 | + 'resolve' => function() { |
|
| 240 | 240 | return ['name' => 'John']; |
| 241 | 241 | } |
| 242 | 242 | ])); |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | ])) |
| 318 | 318 | ], |
| 319 | 319 | 'type' => new StringType(), |
| 320 | - 'resolve' => function ($value, $args) { |
|
| 320 | + 'resolve' => function($value, $args) { |
|
| 321 | 321 | return $args['argument1']; |
| 322 | 322 | } |
| 323 | 323 | ] |
@@ -362,43 +362,43 @@ discard block |
||
| 362 | 362 | 'fields' => [ |
| 363 | 363 | 'listQuery' => [ |
| 364 | 364 | 'type' => new ListType(new TestEnumType()), |
| 365 | - 'resolve' => function () { |
|
| 365 | + 'resolve' => function() { |
|
| 366 | 366 | return 'invalid list'; |
| 367 | 367 | } |
| 368 | 368 | ], |
| 369 | 369 | 'listEnumQuery' => [ |
| 370 | 370 | 'type' => new ListType(new TestEnumType()), |
| 371 | - 'resolve' => function () { |
|
| 371 | + 'resolve' => function() { |
|
| 372 | 372 | return ['invalid enum']; |
| 373 | 373 | } |
| 374 | 374 | ], |
| 375 | 375 | 'invalidEnumQuery' => [ |
| 376 | 376 | 'type' => new TestEnumType(), |
| 377 | - 'resolve' => function () { |
|
| 377 | + 'resolve' => function() { |
|
| 378 | 378 | return 'invalid enum'; |
| 379 | 379 | } |
| 380 | 380 | ], |
| 381 | 381 | 'enumQuery' => [ |
| 382 | 382 | 'type' => new TestEnumType(), |
| 383 | - 'resolve' => function () { |
|
| 383 | + 'resolve' => function() { |
|
| 384 | 384 | return 1; |
| 385 | 385 | } |
| 386 | 386 | ], |
| 387 | 387 | 'invalidNonNullQuery' => [ |
| 388 | 388 | 'type' => new NonNullType(new IntType()), |
| 389 | - 'resolve' => function () { |
|
| 389 | + 'resolve' => function() { |
|
| 390 | 390 | return null; |
| 391 | 391 | } |
| 392 | 392 | ], |
| 393 | 393 | 'invalidNonNullInsideQuery' => [ |
| 394 | 394 | 'type' => new NonNullType(new IntType()), |
| 395 | - 'resolve' => function () { |
|
| 395 | + 'resolve' => function() { |
|
| 396 | 396 | return 'hello'; |
| 397 | 397 | } |
| 398 | 398 | ], |
| 399 | 399 | 'objectQuery' => [ |
| 400 | 400 | 'type' => new TestObjectType(), |
| 401 | - 'resolve' => function () { |
|
| 401 | + 'resolve' => function() { |
|
| 402 | 402 | return ['name' => 'John']; |
| 403 | 403 | } |
| 404 | 404 | ], |
@@ -410,7 +410,7 @@ discard block |
||
| 410 | 410 | 'enum' => new TestEnumType(), |
| 411 | 411 | ], |
| 412 | 412 | ]), |
| 413 | - 'resolve' => function () { |
|
| 413 | + 'resolve' => function() { |
|
| 414 | 414 | return [ |
| 415 | 415 | 'object' => [ |
| 416 | 416 | 'name' => 'John' |
@@ -489,10 +489,10 @@ discard block |
||
| 489 | 489 | ] |
| 490 | 490 | ]); |
| 491 | 491 | |
| 492 | - $union = new UnionType([ |
|
| 492 | + $union = new UnionType([ |
|
| 493 | 493 | 'name' => 'TestUnion', |
| 494 | 494 | 'types' => [$object1, $object2], |
| 495 | - 'resolveType' => function ($object) use ($object1, $object2) { |
|
| 495 | + 'resolveType' => function($object) use ($object1, $object2) { |
|
| 496 | 496 | if (isset($object['id'])) { |
| 497 | 497 | return $object1; |
| 498 | 498 | } |
@@ -503,11 +503,11 @@ discard block |
||
| 503 | 503 | $invalidUnion = new UnionType([ |
| 504 | 504 | 'name' => 'TestUnion', |
| 505 | 505 | 'types' => [$object1, $object2], |
| 506 | - 'resolveType' => function ($object) use ($object3) { |
|
| 506 | + 'resolveType' => function($object) use ($object3) { |
|
| 507 | 507 | return $object3; |
| 508 | 508 | } |
| 509 | 509 | ]); |
| 510 | - $processor = new Processor(new Schema([ |
|
| 510 | + $processor = new Processor(new Schema([ |
|
| 511 | 511 | 'query' => new ObjectType([ |
| 512 | 512 | 'name' => 'RootQuery', |
| 513 | 513 | 'fields' => [ |
@@ -517,7 +517,7 @@ discard block |
||
| 517 | 517 | 'type' => ['type' => 'string'] |
| 518 | 518 | ], |
| 519 | 519 | 'cost' => 10, |
| 520 | - 'resolve' => function ($value, $args) { |
|
| 520 | + 'resolve' => function($value, $args) { |
|
| 521 | 521 | if ($args['type'] == 'object1') { |
| 522 | 522 | return [ |
| 523 | 523 | 'id' => 43 |
@@ -531,7 +531,7 @@ discard block |
||
| 531 | 531 | ], |
| 532 | 532 | 'invalidUnion' => [ |
| 533 | 533 | 'type' => $invalidUnion, |
| 534 | - 'resolve' => function () { |
|
| 534 | + 'resolve' => function() { |
|
| 535 | 535 | return ['name' => 'name resolved']; |
| 536 | 536 | } |
| 537 | 537 | ], |
@@ -593,7 +593,7 @@ discard block |
||
| 593 | 593 | 'fields' => [ |
| 594 | 594 | 'currentUser' => [ |
| 595 | 595 | 'type' => new StringType(), |
| 596 | - 'resolve' => function ($source, $args, ResolveInfo $info) { |
|
| 596 | + 'resolve' => function($source, $args, ResolveInfo $info) { |
|
| 597 | 597 | return $info->getContainer()->get('user')['name']; |
| 598 | 598 | } |
| 599 | 599 | ] |
@@ -611,7 +611,7 @@ discard block |
||
| 611 | 611 | |
| 612 | 612 | public function testComplexityReducer() |
| 613 | 613 | { |
| 614 | - $schema = new Schema( |
|
| 614 | + $schema = new Schema( |
|
| 615 | 615 | [ |
| 616 | 616 | 'query' => new ObjectType( |
| 617 | 617 | [ |
@@ -627,7 +627,7 @@ discard block |
||
| 627 | 627 | 'args' => [ |
| 628 | 628 | 'shorten' => new BooleanType() |
| 629 | 629 | ], |
| 630 | - 'resolve' => function ($value, $args) { |
|
| 630 | + 'resolve' => function($value, $args) { |
|
| 631 | 631 | return empty($args['shorten']) ? $value['firstName'] : $value['firstName']; |
| 632 | 632 | } |
| 633 | 633 | ], |
@@ -636,19 +636,19 @@ discard block |
||
| 636 | 636 | 'likes' => [ |
| 637 | 637 | 'type' => new IntType(), |
| 638 | 638 | 'cost' => 10, |
| 639 | - 'resolve' => function () { |
|
| 639 | + 'resolve' => function() { |
|
| 640 | 640 | return 42; |
| 641 | 641 | } |
| 642 | 642 | ] |
| 643 | 643 | ] |
| 644 | 644 | ] |
| 645 | 645 | ), |
| 646 | - 'cost' => function ($args, $context, $childCost) { |
|
| 646 | + 'cost' => function($args, $context, $childCost) { |
|
| 647 | 647 | $argsCost = isset($args['cost']) ? $args['cost'] : 1; |
| 648 | 648 | |
| 649 | 649 | return 1 + $argsCost * $childCost; |
| 650 | 650 | }, |
| 651 | - 'resolve' => function ($value, $args) { |
|
| 651 | + 'resolve' => function($value, $args) { |
|
| 652 | 652 | $data = ['firstName' => 'John', 'code' => '007']; |
| 653 | 653 | |
| 654 | 654 | return $data; |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | $typeConfig = $this->getConfig(); |
| 55 | - $requiredFields = array_filter($typeConfig->getFields(), function (FieldInterface $field) { |
|
| 55 | + $requiredFields = array_filter($typeConfig->getFields(), function(FieldInterface $field) { |
|
| 56 | 56 | return $field->getType()->getKind() == TypeMap::KIND_NON_NULL; |
| 57 | 57 | }); |
| 58 | 58 | |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | public function parseValue($value) |
| 83 | 83 | { |
| 84 | - if($value instanceof InputObject) { |
|
| 84 | + if ($value instanceof InputObject) { |
|
| 85 | 85 | $value = $value->getValue(); |
| 86 | 86 | } |
| 87 | 87 | |
@@ -375,7 +375,7 @@ |
||
| 375 | 375 | $result = []; |
| 376 | 376 | foreach ($resolvedValue as $resolvedValueItem) { |
| 377 | 377 | try { |
| 378 | - $fakeField->getConfig()->set('resolve', function () use ($resolvedValueItem) { |
|
| 378 | + $fakeField->getConfig()->set('resolve', function() use ($resolvedValueItem) { |
|
| 379 | 379 | return $resolvedValueItem; |
| 380 | 380 | }); |
| 381 | 381 | |
@@ -80,7 +80,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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(), |
@@ -21,7 +21,7 @@ |
||
| 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()); |
@@ -18,8 +18,8 @@ discard block |
||
| 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 |
||
| 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()); |
@@ -25,7 +25,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | public function testGetValue($actual, $expected) |
| 16 | 16 | { |
| 17 | - $var = new Variable('foo', 'bar', false, false, new Location(1,1)); |
|
| 17 | + $var = new Variable('foo', 'bar', false, false, new Location(1, 1)); |
|
| 18 | 18 | $var->setValue($actual); |
| 19 | 19 | $this->assertEquals($var->getValue(), $expected); |
| 20 | 20 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function testGetNullValueException() |
| 27 | 27 | { |
| 28 | - $var = new Variable('foo', 'bar', false, false, new Location(1,1)); |
|
| 28 | + $var = new Variable('foo', 'bar', false, false, new Location(1, 1)); |
|
| 29 | 29 | $var->getValue(); |
| 30 | 30 | } |
| 31 | 31 | |