@@ -22,7 +22,7 @@ |
||
22 | 22 | } |
23 | 23 | |
24 | 24 | // Toss out the first and last lines. |
25 | - $lines = array_slice($lines, 1, count($lines) - 2); |
|
25 | + $lines = array_slice($lines, 1, count($lines)-2); |
|
26 | 26 | |
27 | 27 | // take the tabs from the first line, and subtract them from all lines |
28 | 28 | $matches = []; |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | 'name' => $name, |
64 | 64 | 'resolve' => function ($value, $args1, $context, $info) use ($config, $args) { |
65 | 65 | // validate inputs |
66 | - $config['type'] = new InputObjectType([ |
|
66 | + $config['type'] = new InputObjectType([ |
|
67 | 67 | 'name'=>'', |
68 | 68 | 'fields' => $args, |
69 | 69 | ]); |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | if ($arr === []) { |
89 | 89 | return false; |
90 | 90 | } |
91 | - return array_keys($arr) !== range(0, count($arr) - 1); |
|
91 | + return array_keys($arr) !== range(0, count($arr)-1); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | $newPath[] = 0; |
107 | 107 | $this->_validateItems($subValue, $newPath, $validate); |
108 | 108 | } else { |
109 | - $path[count($path) - 1] = $idx; |
|
109 | + $path[count($path)-1] = $idx; |
|
110 | 110 | $err = $validate($subValue); |
111 | 111 | |
112 | 112 | if ($err) { |
@@ -101,10 +101,10 @@ |
||
101 | 101 | 'bookAttributes' => [ |
102 | 102 | 'type' => Type::listOf($this->bookAttributesInputType), |
103 | 103 | 'validate' => static function ($var) { |
104 | - return $var ? 0: 1; |
|
104 | + return $var ? 0 : 1; |
|
105 | 105 | }, |
106 | 106 | 'validateItem' => static function ($book) { |
107 | - return isset($book['author']) || isset($book['title']) ? 0: 1; |
|
107 | + return isset($book['author']) || isset($book['title']) ? 0 : 1; |
|
108 | 108 | }, |
109 | 109 | ], |
110 | 110 | ], |
@@ -106,7 +106,7 @@ |
||
106 | 106 | [ |
107 | 107 | 'suberrors' => |
108 | 108 | [ |
109 | - 'path' => [0,1], |
|
109 | + 'path' => [0, 1], |
|
110 | 110 | 'code' => 'invalidPhoneNumber', |
111 | 111 | ], |
112 | 112 | ], |
@@ -91,7 +91,7 @@ |
||
91 | 91 | $type = $config['type']; |
92 | 92 | foreach ($type->getFields() as $key => $field) { |
93 | 93 | $newType = static::create( |
94 | - $field->config + ['typeSetter' => $config['typeSetter'] ?? null], |
|
94 | + $field->config+['typeSetter' => $config['typeSetter'] ?? null], |
|
95 | 95 | array_merge($path, [$key]) |
96 | 96 | ); |
97 | 97 |