@@ -42,10 +42,10 @@ discard block |
||
42 | 42 | { |
43 | 43 | $result = []; |
44 | 44 | |
45 | - foreach($names as $name) { |
|
45 | + foreach ($names as $name) { |
|
46 | 46 | if ($name == 'rebels') { |
47 | 47 | $result[] = self::$factions[1]; |
48 | - } elseif($name == 'empire') { |
|
48 | + } elseif ($name == 'empire') { |
|
49 | 49 | $result[] = self::$factions[2]; |
50 | 50 | } else { |
51 | 51 | $result[] = null; |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | { |
94 | 94 | if ($id == 'rebels') { |
95 | 95 | return self::$factions[1]; |
96 | - } elseif($id == 'empire') { |
|
96 | + } elseif ($id == 'empire') { |
|
97 | 97 | return self::$factions[2]; |
98 | 98 | } |
99 | 99 | if (array_key_exists($id, self::$factions)) { |
@@ -30,21 +30,21 @@ |
||
30 | 30 | ], |
31 | 31 | ])) |
32 | 32 | ->addField('location', [ |
33 | - 'type' => new ObjectType( |
|
34 | - [ |
|
35 | - 'name' => 'Location', |
|
36 | - 'fields' => [ |
|
37 | - 'address' => new StringType() |
|
38 | - ] |
|
39 | - ] |
|
40 | - ), |
|
41 | - 'args' => [ |
|
42 | - 'noop' => new IntType() |
|
43 | - ], |
|
44 | - 'resolve' => function ($value, $args, $info) { |
|
45 | - return ['address' => '1234 Street']; |
|
46 | - } |
|
47 | - ] |
|
33 | + 'type' => new ObjectType( |
|
34 | + [ |
|
35 | + 'name' => 'Location', |
|
36 | + 'fields' => [ |
|
37 | + 'address' => new StringType() |
|
38 | + ] |
|
39 | + ] |
|
40 | + ), |
|
41 | + 'args' => [ |
|
42 | + 'noop' => new IntType() |
|
43 | + ], |
|
44 | + 'resolve' => function ($value, $args, $info) { |
|
45 | + return ['address' => '1234 Street']; |
|
46 | + } |
|
47 | + ] |
|
48 | 48 | ) |
49 | 49 | ->addField( |
50 | 50 | 'echo', [ |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | 'args' => [ |
42 | 42 | 'noop' => new IntType() |
43 | 43 | ], |
44 | - 'resolve' => function ($value, $args, $info) { |
|
44 | + 'resolve' => function($value, $args, $info) { |
|
45 | 45 | return ['address' => '1234 Street']; |
46 | 46 | } |
47 | 47 | ] |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | 'args' => [ |
53 | 53 | 'value' => new NonNullType(new StringType()) |
54 | 54 | ], |
55 | - 'resolve' => function ($value, $args, $info) { |
|
55 | + 'resolve' => function($value, $args, $info) { |
|
56 | 56 | return $args['value']; |
57 | 57 | } |
58 | 58 | ] |
@@ -61,6 +61,6 @@ |
||
61 | 61 | $arrayData = (new TestObjectType())->getData(); |
62 | 62 | |
63 | 63 | $this->assertEquals('John', TypeService::getPropertyValue($arrayData, 'name')); |
64 | - $this->assertEquals('John', TypeService::getPropertyValue((object) $arrayData, 'name')); |
|
64 | + $this->assertEquals('John', TypeService::getPropertyValue((object)$arrayData, 'name')); |
|
65 | 65 | } |
66 | 66 | } |
@@ -27,13 +27,13 @@ |
||
27 | 27 | 'title' => new StringType(), |
28 | 28 | ] |
29 | 29 | ]); |
30 | - $processor = new Processor(new Schema([ |
|
30 | + $processor = new Processor(new Schema([ |
|
31 | 31 | 'query' => new ObjectType([ |
32 | 32 | 'name' => 'RootQueryType', |
33 | 33 | 'fields' => [ |
34 | 34 | 'latestReport' => [ |
35 | 35 | 'type' => $reportType, |
36 | - 'resolve' => function () { |
|
36 | + 'resolve' => function() { |
|
37 | 37 | return [ |
38 | 38 | 'title' => 'Accident #1', |
39 | 39 | 'time' => '13:30:12', |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | if ($value && $value->getKind() == TypeMap::KIND_ENUM) { |
59 | 59 | $data = []; |
60 | 60 | foreach ($value->getValues() as $enumValue) { |
61 | - if(!$args['includeDeprecated'] && (isset($enumValue['isDeprecated']) && $enumValue['isDeprecated'])) { |
|
61 | + if (!$args['includeDeprecated'] && (isset($enumValue['isDeprecated']) && $enumValue['isDeprecated'])) { |
|
62 | 62 | continue; |
63 | 63 | } |
64 | 64 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | /** @var AbstractObjectType $value */ |
94 | - return array_filter($value->getConfig()->getFields(), function ($field) use ($args) { |
|
94 | + return array_filter($value->getConfig()->getFields(), function($field) use ($args) { |
|
95 | 95 | /** @var $field Field */ |
96 | 96 | if (in_array($field->getName(), ['__type', '__schema']) || (!$args['includeDeprecated'] && $field->isDeprecated())) { |
97 | 97 | return false; |
@@ -120,7 +120,7 @@ |
||
120 | 120 | $schema = $info->getExecutionContext()->getSchema(); |
121 | 121 | $this->collectTypes($schema->getQueryType()); |
122 | 122 | foreach ($schema->getTypesList()->getTypes() as $type) { |
123 | - $this->collectTypes($type); |
|
123 | + $this->collectTypes($type); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | $possibleTypes = []; |
@@ -87,6 +87,9 @@ |
||
87 | 87 | return $this->getConfigValue('interfaces', []); |
88 | 88 | } |
89 | 89 | |
90 | + /** |
|
91 | + * @param ObjectType|null $value |
|
92 | + */ |
|
90 | 93 | public function isValidValue($value) |
91 | 94 | { |
92 | 95 | return is_array($value) || is_null($value) || is_object($value); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $validator = ConfigValidator::getInstance(); |
60 | 60 | |
61 | 61 | if (!$validator->validate($this->data, $this->getContextRules(), $this->extraFieldsAllowed)) { |
62 | - throw new ConfigurationException('Config is not valid for ' . ($this->contextObject ? get_class($this->contextObject) : null) . "\n" . implode("\n", $validator->getErrorsArray(false))); |
|
62 | + throw new ConfigurationException('Config is not valid for '.($this->contextObject ? get_class($this->contextObject) : null)."\n".implode("\n", $validator->getErrorsArray(false))); |
|
63 | 63 | } |
64 | 64 | } |
65 | 65 | |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | } elseif (substr($method, 0, 2) == 'is') { |
152 | 152 | $propertyName = lcfirst(substr($method, 2)); |
153 | 153 | } else { |
154 | - throw new \Exception('Call to undefined method ' . $method); |
|
154 | + throw new \Exception('Call to undefined method '.$method); |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | return $this->get($propertyName); |
@@ -47,7 +47,7 @@ |
||
47 | 47 | if (isset($this->values[$id])) { |
48 | 48 | unset($this->values[$id]); |
49 | 49 | } |
50 | - $this->keyset[$id] = true; |
|
50 | + $this->keyset[$id] = true; |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | public function remove($id) |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | 'args' => [ |
37 | 37 | 'episode' => ['type' => new EpisodeEnum()] |
38 | 38 | ], |
39 | - 'resolve' => function ($root, $args) { |
|
39 | + 'resolve' => function($root, $args) { |
|
40 | 40 | return StarWarsData::getHero(isset($args['episode']) ? $args['episode'] : null); |
41 | 41 | }, |
42 | 42 | ]) |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | 'args' => [ |
47 | 47 | 'id' => new IdType() |
48 | 48 | ], |
49 | - 'resolve' => function ($value = null, $args = []) { |
|
49 | + 'resolve' => function($value = null, $args = []) { |
|
50 | 50 | $humans = StarWarsData::humans(); |
51 | 51 | |
52 | 52 | return isset($humans[$args['id']]) ? $humans[$args['id']] : null; |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | 'args' => [ |
59 | 59 | 'id' => new IdType() |
60 | 60 | ], |
61 | - 'resolve' => function ($value = null, $args = []) { |
|
61 | + 'resolve' => function($value = null, $args = []) { |
|
62 | 62 | $droids = StarWarsData::droids(); |
63 | 63 | |
64 | 64 | return isset($droids[$args['id']]) ? $droids[$args['id']] : null; |