@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | { |
| 24 | 24 | foreach (TypeFactory::getScalarTypesNames() as $typeName) { |
| 25 | 25 | $scalarType = TypeFactory::getScalarType($typeName); |
| 26 | - $testDataMethod = 'get' . $typeName . 'TestData'; |
|
| 26 | + $testDataMethod = 'get'.$typeName.'TestData'; |
|
| 27 | 27 | |
| 28 | 28 | $this->assertNotEmpty($scalarType->getDescription()); |
| 29 | 29 | $this->assertEquals($scalarType->getKind(), TypeMap::KIND_SCALAR); |
@@ -39,9 +39,9 @@ discard block |
||
| 39 | 39 | $this->assertParse($scalarType, $data, $serialized, $typeName); |
| 40 | 40 | |
| 41 | 41 | if ($isValid) { |
| 42 | - $this->assertTrue($scalarType->isValidValue($data), $typeName . ' validation for :' . serialize($data)); |
|
| 42 | + $this->assertTrue($scalarType->isValidValue($data), $typeName.' validation for :'.serialize($data)); |
|
| 43 | 43 | } else { |
| 44 | - $this->assertFalse($scalarType->isValidValue($data), $typeName . ' validation for :' . serialize($data)); |
|
| 44 | + $this->assertFalse($scalarType->isValidValue($data), $typeName.' validation for :'.serialize($data)); |
|
| 45 | 45 | } |
| 46 | 46 | } |
| 47 | 47 | } |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | private function assertSerialization(AbstractScalarType $object, $input, $expected) |
| 64 | 64 | { |
| 65 | - $this->assertEquals($expected, $object->serialize($input), $object->getName() . ' serialize for: ' . serialize($input)); |
|
| 65 | + $this->assertEquals($expected, $object->serialize($input), $object->getName().' serialize for: '.serialize($input)); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | private function assertParse(AbstractScalarType $object, $input, $expected, $typeName) |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | if ($parsed instanceof \DateTime) { |
| 72 | 72 | $expected = \DateTime::createFromFormat($typeName == 'datetime' ? 'Y-m-d H:i:s' : 'D, d M Y H:i:s O', $expected); |
| 73 | 73 | } |
| 74 | - $this->assertEquals($expected, $parsed, $object->getName() . ' parse for: ' . serialize($input)); |
|
| 74 | + $this->assertEquals($expected, $parsed, $object->getName().' parse for: '.serialize($input)); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | } |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | ], |
| 32 | 32 | ] |
| 33 | 33 | ]); |
| 34 | - $schema = new Schema([ |
|
| 34 | + $schema = new Schema([ |
|
| 35 | 35 | 'query' => new ObjectType([ |
| 36 | 36 | 'name' => 'RootQuery', |
| 37 | 37 | 'fields' => [ |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | ] |
| 50 | 50 | ]) |
| 51 | 51 | ], |
| 52 | - 'resolve' => function ($source, $args) { |
|
| 52 | + 'resolve' => function($source, $args) { |
|
| 53 | 53 | return sprintf('Result with level %s and status %s', |
| 54 | 54 | $args['statObject']['level'], $args['statObject']['status'] |
| 55 | 55 | ); |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | 'args' => [ |
| 21 | 21 | 'date' => new DateTimeType('Y-m-d H:ia') |
| 22 | 22 | ], |
| 23 | - 'resolve' => function ($value, $args, $info) { |
|
| 23 | + 'resolve' => function($value, $args, $info) { |
|
| 24 | 24 | |
| 25 | 25 | if (isset($args['date'])) { |
| 26 | 26 | return $args['date']; |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | 'args' => [ |
| 43 | 43 | 'date' => new DateTimeType('Y-m-d H:ia') |
| 44 | 44 | ], |
| 45 | - 'resolve' => function ($value, $args, $info) { |
|
| 45 | + 'resolve' => function($value, $args, $info) { |
|
| 46 | 46 | |
| 47 | 47 | if (isset($args['date'])) { |
| 48 | 48 | return $args['date']; |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | use Youshido\GraphQL\Execution\Processor; |
| 6 | 6 | use Youshido\GraphQL\Schema; |
| 7 | 7 | |
| 8 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
| 8 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
| 9 | 9 | /** @var Schema\AbstractSchema $schema */ |
| 10 | 10 | $schema = new StarWarsRelaySchema(); |
| 11 | 11 | |
@@ -48,4 +48,4 @@ discard block |
||
| 48 | 48 | '; |
| 49 | 49 | |
| 50 | 50 | $processor->processPayload($payload, ['names_0' => ['rebels']]); |
| 51 | -echo json_encode($processor->getResponseData()) . "\n"; |
|
| 51 | +echo json_encode($processor->getResponseData())."\n"; |
|
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | use Youshido\GraphQL\Execution\Processor; |
| 12 | 12 | use Youshido\GraphQL\Schema\Schema; |
| 13 | 13 | |
| 14 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
| 14 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
| 15 | 15 | /** @var Schema $schema */ |
| 16 | 16 | $schema = new StarWarsRelaySchema(); |
| 17 | 17 | |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | use Youshido\GraphQL\Execution\Processor; |
| 7 | 7 | use Youshido\GraphQL\Schema\Schema; |
| 8 | 8 | |
| 9 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
| 9 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
| 10 | 10 | /** @var Schema $schema */ |
| 11 | 11 | $schema = new BlogSchema(); |
| 12 | 12 | |
@@ -18,4 +18,4 @@ discard block |
||
| 18 | 18 | $payload = 'mutation { createPost(author: "Alex", post: {title: "Hey, this is my new post", summary: "my post" }) { title } }'; |
| 19 | 19 | |
| 20 | 20 | $processor->processPayload($payload); |
| 21 | -echo json_encode($processor->getResponseData()) . "\n"; |
|
| 21 | +echo json_encode($processor->getResponseData())."\n"; |
|
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | use Youshido\GraphQL\Execution\Processor; |
| 12 | 12 | use Youshido\GraphQL\Schema\Schema; |
| 13 | 13 | |
| 14 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
| 14 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
| 15 | 15 | /** @var Schema $schema */ |
| 16 | 16 | $schema = new BlogSchema(); |
| 17 | 17 | |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | public function testConfigNoFields() |
| 32 | 32 | { |
| 33 | 33 | ConfigValidator::getInstance()->assertValidConfig( |
| 34 | - new InterfaceTypeConfig(['name' => 'Test', 'resolveType' => function () { }], null, true) |
|
| 34 | + new InterfaceTypeConfig(['name' => 'Test', 'resolveType' => function() { }], null, true) |
|
| 35 | 35 | ); |
| 36 | 36 | } |
| 37 | 37 | |
@@ -59,11 +59,11 @@ discard block |
||
| 59 | 59 | $interfaceConfig = new InterfaceTypeConfig([ |
| 60 | 60 | 'name' => 'Test', |
| 61 | 61 | 'fields' => ['id' => new IntType()], |
| 62 | - 'resolveType' => function ($object) { |
|
| 62 | + 'resolveType' => function($object) { |
|
| 63 | 63 | return $object->getType(); |
| 64 | 64 | } |
| 65 | 65 | ], null, true); |
| 66 | - $object = new ObjectType(['name' => 'User', 'fields' => ['name' => new StringType()]]); |
|
| 66 | + $object = new ObjectType(['name' => 'User', 'fields' => ['name' => new StringType()]]); |
|
| 67 | 67 | |
| 68 | 68 | $this->assertEquals($interfaceConfig->getName(), 'Test'); |
| 69 | 69 | $this->assertEquals($interfaceConfig->resolveType($object), $object->getType()); |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | 'from' => new DateTimeType('Y-m-d H:i:s'), |
| 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']->format('Y-m-d H:i:s'), |
| 36 | 36 | empty($args['fromtz']) ? 'default' : $args['fromtz']->format('r') |