@@ -23,6 +23,9 @@ discard block |
||
23 | 23 | */ |
24 | 24 | private $typesList; |
25 | 25 | |
26 | + /** |
|
27 | + * @param \Youshido\GraphQL\Schema\AbstractSchema $contextObject |
|
28 | + */ |
|
26 | 29 | public function __construct(array $configData, $contextObject = null, $finalClass = false) |
27 | 30 | { |
28 | 31 | $this->typesList = new SchemaTypesList(); |
@@ -78,7 +81,7 @@ discard block |
||
78 | 81 | } |
79 | 82 | |
80 | 83 | /** |
81 | - * @param $query AbstractObjectType |
|
84 | + * @param ObjectType $query AbstractObjectType |
|
82 | 85 | * |
83 | 86 | * @return SchemaConfig |
84 | 87 | */ |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | } |
27 | 27 | protected $isFinal = false; |
28 | 28 | |
29 | - private $nameCache = null; |
|
29 | + private $nameCache = null; |
|
30 | 30 | |
31 | 31 | public function __construct(array $config = []) |
32 | 32 | { |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $config['type'] = $this->getType(); |
35 | 35 | $config['name'] = $this->getName(); |
36 | 36 | if (empty($config['name'])) { |
37 | - $config['name'] =$this->getAutoName(); |
|
37 | + $config['name'] = $this->getAutoName(); |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 |
@@ -48,7 +48,9 @@ |
||
48 | 48 | */ |
49 | 49 | public function isValidValue($value) |
50 | 50 | { |
51 | - if (is_null($value)) return true; |
|
51 | + if (is_null($value)) { |
|
52 | + return true; |
|
53 | + } |
|
52 | 54 | foreach ($this->getConfig()->get('values') as $item) { |
53 | 55 | if ($value === $item['name'] || $value === $item['value']) { |
54 | 56 | return true; |
@@ -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']; |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | 'args' => [ |
25 | 25 | 'ids' => new ListType(new NonNullType(new IdType())) |
26 | 26 | ], |
27 | - 'resolve' => function () { |
|
27 | + 'resolve' => function() { |
|
28 | 28 | return 'item'; |
29 | 29 | } |
30 | 30 | ], |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | 'args' => [ |
86 | 86 | 'sortOrder' => new StringType(), |
87 | 87 | ], |
88 | - 'resolve' => function ($args) { |
|
88 | + 'resolve' => function($args) { |
|
89 | 89 | return sprintf('Result with %s order', empty($args['sortOrder']) ? 'default' : $args['sortOrder']); |
90 | 90 | }, |
91 | 91 | ], |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | 'fields' => [ |
54 | 54 | 'empty' => [ |
55 | 55 | 'type' => new StringType(), |
56 | - 'resolve' => function () { |
|
56 | + 'resolve' => function() { |
|
57 | 57 | return null; |
58 | 58 | } |
59 | 59 | ] |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | ])) |
73 | 73 | ], |
74 | 74 | 'type' => new BooleanType(), |
75 | - 'resolve' => function ($object, $args) { |
|
75 | + 'resolve' => function($object, $args) { |
|
76 | 76 | return true; |
77 | 77 | } |
78 | 78 | ] |
@@ -98,14 +98,14 @@ discard block |
||
98 | 98 | ); |
99 | 99 | } |
100 | 100 | |
101 | - public function testNullableInputWithNonNull(){ |
|
101 | + public function testNullableInputWithNonNull() { |
|
102 | 102 | $processor = new Processor(new Schema([ |
103 | 103 | 'query' => new ObjectType([ |
104 | 104 | 'name' => 'RootQuery', |
105 | 105 | 'fields' => [ |
106 | 106 | 'empty' => [ |
107 | 107 | 'type' => new StringType(), |
108 | - 'resolve' => function () { |
|
108 | + 'resolve' => function() { |
|
109 | 109 | return null; |
110 | 110 | } |
111 | 111 | ] |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | ]) |
125 | 125 | ], |
126 | 126 | 'type' => new BooleanType(), |
127 | - 'resolve' => function ($object, $args) { |
|
127 | + 'resolve' => function($object, $args) { |
|
128 | 128 | return true; |
129 | 129 | } |
130 | 130 | ] |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | 'fields' => [ |
149 | 149 | 'empty' => [ |
150 | 150 | 'type' => new StringType(), |
151 | - 'resolve' => function () { |
|
151 | + 'resolve' => function() { |
|
152 | 152 | } |
153 | 153 | ], |
154 | 154 | ] |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | ] |
172 | 172 | ]) |
173 | 173 | ], |
174 | - 'resolve' => function () { |
|
174 | + 'resolve' => function() { |
|
175 | 175 | return 'success message'; |
176 | 176 | } |
177 | 177 | ] |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
93 | - * @param $name |
|
93 | + * @param string $name |
|
94 | 94 | * |
95 | 95 | * @return Field |
96 | 96 | */ |
@@ -122,6 +122,9 @@ discard block |
||
122 | 122 | return $this->fields; |
123 | 123 | } |
124 | 124 | |
125 | + /** |
|
126 | + * @param string $name |
|
127 | + */ |
|
125 | 128 | public function removeField($name) |
126 | 129 | { |
127 | 130 | if ($this->hasField($name)) { |