@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | { |
20 | 20 | |
21 | 21 | |
22 | - $schema = new Schema([ |
|
22 | + $schema = new Schema([ |
|
23 | 23 | 'query' => new ObjectType([ |
24 | 24 | 'name' => 'RootQuery', |
25 | 25 | 'fields' => [ |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | ] |
48 | 48 | ])) |
49 | 49 | ], |
50 | - 'resolve' => function ($source, $args) { |
|
50 | + 'resolve' => function($source, $args) { |
|
51 | 51 | return [ |
52 | 52 | 'id' => '1', |
53 | 53 | 'name' => sprintf('Meeting with %d beans', count($args['related_beans'])), |
@@ -86,7 +86,9 @@ |
||
86 | 86 | |
87 | 87 | public function parseValue($value) |
88 | 88 | { |
89 | - if (is_null($value)) return null; |
|
89 | + if (is_null($value)) { |
|
90 | + return null; |
|
91 | + } |
|
90 | 92 | if($value instanceof InputObject) { |
91 | 93 | $value = $value->getValue(); |
92 | 94 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | |
67 | 67 | $typeConfig = $this->getConfig(); |
68 | - $requiredFields = array_filter($typeConfig->getFields(), function (InputFieldInterface $field) { |
|
68 | + $requiredFields = array_filter($typeConfig->getFields(), function(InputFieldInterface $field) { |
|
69 | 69 | return $field->getType()->getKind() == TypeMap::KIND_NON_NULL; |
70 | 70 | }); |
71 | 71 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | public function parseValue($value) |
107 | 107 | { |
108 | 108 | if (is_null($value)) return null; |
109 | - if($value instanceof InputObject) { |
|
109 | + if ($value instanceof InputObject) { |
|
110 | 110 | $value = $value->getValue(); |
111 | 111 | } |
112 | 112 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | } |
11 | 11 | if ($_SERVER['REQUEST_URI'] == '/graphiql.css') { |
12 | 12 | header('Content-Type: text/css'); |
13 | - readfile(__DIR__ . '/../GraphiQL/graphiql.css'); |
|
13 | + readfile(__DIR__.'/../GraphiQL/graphiql.css'); |
|
14 | 14 | die(); |
15 | 15 | } |
16 | 16 | |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | use Youshido\GraphQL\Execution\Processor; |
19 | 19 | use Youshido\GraphQL\Schema\Schema; |
20 | 20 | |
21 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
21 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
22 | 22 | /** @var Schema $schema */ |
23 | 23 | $schema = new BookStoreSchema(); |
24 | 24 | |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $variables = isset($requestData['variables']) ? $requestData['variables'] : null; |
36 | 36 | |
37 | 37 | if (empty($payload)) { |
38 | - $GraphiQLData = file_get_contents(__DIR__ . '/../GraphiQL/index.html'); |
|
38 | + $GraphiQLData = file_get_contents(__DIR__.'/../GraphiQL/index.html'); |
|
39 | 39 | echo $GraphiQLData; |
40 | 40 | die(); |
41 | 41 | } |
@@ -129,9 +129,9 @@ |
||
129 | 129 | if (is_object($data)) { |
130 | 130 | $getter = $path; |
131 | 131 | if (substr($path, 0, 2) != 'is') { |
132 | - $getter = 'get' . self::classify($path); |
|
132 | + $getter = 'get'.self::classify($path); |
|
133 | 133 | if (!is_callable([$data, $getter])) { |
134 | - $getter = 'is' . self::classify($path); |
|
134 | + $getter = 'is'.self::classify($path); |
|
135 | 135 | } |
136 | 136 | if (!is_callable([$data, $getter])) { |
137 | 137 | $getter = self::classify($path); |
@@ -71,7 +71,7 @@ |
||
71 | 71 | if ($this->hasDefaultValue()) { |
72 | 72 | return $this->defaultValue; |
73 | 73 | } |
74 | - throw new \LogicException('Value is not set for variable "' . $this->name . '"'); |
|
74 | + throw new \LogicException('Value is not set for variable "'.$this->name.'"'); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | return $this->value; |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | 'args' => [ |
24 | 24 | 'ids' => new ListType(new NonNullType(new IdType())), |
25 | 25 | ], |
26 | - 'resolve' => function () { |
|
26 | + 'resolve' => function() { |
|
27 | 27 | return 'item'; |
28 | 28 | }, |
29 | 29 | ], |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | 'args' => [ |
101 | 101 | 'sortOrder' => new StringType(), |
102 | 102 | ], |
103 | - 'resolve' => function ($args) { |
|
103 | + 'resolve' => function($args) { |
|
104 | 104 | return sprintf('Result with %s order', empty($args['sortOrder']) ? 'default' : $args['sortOrder']); |
105 | 105 | }, |
106 | 106 | ], |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | { |
23 | 23 | foreach (TypeFactory::getScalarTypesNames() as $typeName) { |
24 | 24 | $scalarType = TypeFactory::getScalarType($typeName); |
25 | - $testDataMethod = 'get' . $typeName . 'TestData'; |
|
25 | + $testDataMethod = 'get'.$typeName.'TestData'; |
|
26 | 26 | |
27 | 27 | $this->assertNotEmpty($scalarType->getDescription()); |
28 | 28 | $this->assertEquals($scalarType->getKind(), TypeMap::KIND_SCALAR); |
@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | $this->assertParse($scalarType, $data, $serialized, $typeName); |
39 | 39 | |
40 | 40 | if ($isValid) { |
41 | - $this->assertTrue($scalarType->isValidValue($data), $typeName . ' validation for :' . serialize($data)); |
|
41 | + $this->assertTrue($scalarType->isValidValue($data), $typeName.' validation for :'.serialize($data)); |
|
42 | 42 | } else { |
43 | - $this->assertFalse($scalarType->isValidValue($data), $typeName . ' validation for :' . serialize($data)); |
|
43 | + $this->assertFalse($scalarType->isValidValue($data), $typeName.' validation for :'.serialize($data)); |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 | } |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | private function assertSerialization(AbstractScalarType $object, $input, $expected) |
63 | 63 | { |
64 | - $this->assertEquals($expected, $object->serialize($input), $object->getName() . ' serialize for: ' . serialize($input)); |
|
64 | + $this->assertEquals($expected, $object->serialize($input), $object->getName().' serialize for: '.serialize($input)); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | private function assertParse(AbstractScalarType $object, $input, $expected, $typeName) |
@@ -72,6 +72,6 @@ discard block |
||
72 | 72 | $parsed = \DateTime::createFromFormat('Y-m-d H:i:s', $parsed->format('Y-m-d H:i:s')); |
73 | 73 | } |
74 | 74 | |
75 | - $this->assertEquals($expected, $parsed, $object->getName() . ' parse for: ' . serialize($input)); |
|
75 | + $this->assertEquals($expected, $parsed, $object->getName().' parse for: '.serialize($input)); |
|
76 | 76 | } |
77 | 77 | } |
@@ -77,7 +77,7 @@ |
||
77 | 77 | |
78 | 78 | public function parseValue($value) |
79 | 79 | { |
80 | - foreach ((array) $value as $keyValue => $valueItem) { |
|
80 | + foreach ((array)$value as $keyValue => $valueItem) { |
|
81 | 81 | $value[$keyValue] = $this->getItemType()->parseValue($valueItem); |
82 | 82 | } |
83 | 83 |
@@ -28,6 +28,9 @@ discard block |
||
28 | 28 | */ |
29 | 29 | private $directiveList; |
30 | 30 | |
31 | + /** |
|
32 | + * @param \Youshido\GraphQL\Schema\AbstractSchema $contextObject |
|
33 | + */ |
|
31 | 34 | public function __construct(array $configData, $contextObject = null, $finalClass = false) |
32 | 35 | { |
33 | 36 | $this->typesList = new SchemaTypesList(); |
@@ -88,7 +91,7 @@ discard block |
||
88 | 91 | } |
89 | 92 | |
90 | 93 | /** |
91 | - * @param $query AbstractObjectType |
|
94 | + * @param ObjectType $query AbstractObjectType |
|
92 | 95 | * |
93 | 96 | * @return SchemaConfig |
94 | 97 | */ |