@@ -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') |
@@ -43,12 +43,12 @@ discard block |
||
43 | 43 | $authors = []; |
44 | 44 | while (count($authors) < rand(1, 4)) { |
45 | 45 | $authors[] = [ |
46 | - 'name' => 'Author ' . substr(md5(time()), 0, 4) |
|
46 | + 'name' => 'Author '.substr(md5(time()), 0, 4) |
|
47 | 47 | ]; |
48 | 48 | } |
49 | 49 | $data[] = [ |
50 | 50 | 'id' => $i, |
51 | - 'title' => 'Title of ' . $i, |
|
51 | + 'title' => 'Title of '.$i, |
|
52 | 52 | 'authors' => $authors, |
53 | 53 | ]; |
54 | 54 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | return true; |
70 | 70 | $p->processPayload('{ posts { id, title, authors { name } } }'); |
71 | 71 | $res = $p->getResponseData(); |
72 | - echo "Count: " . count($res['data']['posts']) . "\n"; |
|
72 | + echo "Count: ".count($res['data']['posts'])."\n"; |
|
73 | 73 | var_dump($res['data']['posts'][0]); |
74 | 74 | printf("Test Time: %04f\n", microtime(true) - $time); |
75 | 75 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | ->addField('name', new NonNullType(new StringType())) |
24 | 24 | ->addField('friends', [ |
25 | 25 | 'type' => new ListType(new CharacterInterface()), |
26 | - 'resolve' => function ($value) { |
|
26 | + 'resolve' => function($value) { |
|
27 | 27 | return $value['friends']; |
28 | 28 | } |
29 | 29 | ]) |
@@ -25,7 +25,7 @@ |
||
25 | 25 | ->addField('name', new NonNullType(new StringType())) |
26 | 26 | ->addField('friends', [ |
27 | 27 | 'type' => new ListType(new CharacterInterface()), |
28 | - 'resolve' => function ($droid) { |
|
28 | + 'resolve' => function($droid) { |
|
29 | 29 | return StarWarsData::getFriends($droid); |
30 | 30 | }, |
31 | 31 | ]) |
@@ -49,7 +49,7 @@ |
||
49 | 49 | return $this->getConfig()->get($propertyName); |
50 | 50 | } |
51 | 51 | |
52 | - throw new \Exception('Call to undefined method ' . $method); |
|
52 | + throw new \Exception('Call to undefined method '.$method); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | } |
@@ -129,7 +129,7 @@ |
||
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 | } |
134 | 134 | |
135 | 135 | return is_callable([$data, $getter]) ? $data->$getter() : (isset($data->$path) ? $data->$path : null); |
@@ -34,13 +34,13 @@ |
||
34 | 34 | $name = $name == 'Datetime' ? 'DateTime' : $name; |
35 | 35 | $name = $name == 'Datetimetz' ? 'DateTimeTz' : $name; |
36 | 36 | |
37 | - $className = 'Youshido\GraphQL\Type\Scalar\\' . $name . 'Type'; |
|
37 | + $className = 'Youshido\GraphQL\Type\Scalar\\'.$name.'Type'; |
|
38 | 38 | self::$objectsHash[$type] = new $className(); |
39 | 39 | } |
40 | 40 | |
41 | 41 | return self::$objectsHash[$type]; |
42 | 42 | } else { |
43 | - throw new ConfigurationException('Configuration problem with type ' . $type); |
|
43 | + throw new ConfigurationException('Configuration problem with type '.$type); |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 |
@@ -45,7 +45,7 @@ |
||
45 | 45 | } |
46 | 46 | |
47 | 47 | foreach ($value->getTypesList()->getTypes() as $type) { |
48 | - $this->collectTypes($type); |
|
48 | + $this->collectTypes($type); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | return array_values($this->types); |
@@ -20,7 +20,9 @@ |
||
20 | 20 | |
21 | 21 | protected function collectTypes(AbstractType $type) |
22 | 22 | { |
23 | - if (is_object($type) && array_key_exists($type->getName(), $this->types)) return; |
|
23 | + if (is_object($type) && array_key_exists($type->getName(), $this->types)) { |
|
24 | + return; |
|
25 | + } |
|
24 | 26 | |
25 | 27 | switch ($type->getKind()) { |
26 | 28 | case TypeMap::KIND_INTERFACE: |