@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * For the full copyright and license information, please view the LICENSE |
| 5 | 5 | * file that was distributed with this source code. |
| 6 | 6 | */ |
| 7 | -declare(strict_types=1); |
|
| 7 | +declare(strict_types = 1); |
|
| 8 | 8 | |
| 9 | 9 | namespace App\GraphQL\Feature; |
| 10 | 10 | |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | { |
| 34 | 34 | $this->transfer = new EnumTransfer(); |
| 35 | 35 | |
| 36 | - $this->addFieldsWrapper(function (array $arguments) { |
|
| 36 | + $this->addFieldsWrapper(function(array $arguments) { |
|
| 37 | 37 | foreach ($arguments as $key => $data) { |
| 38 | 38 | yield $key => $this->configs($data); |
| 39 | 39 | } |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | private function configs(array $config): array |
| 49 | 49 | { |
| 50 | - if (! $this->isGraphQLType($config)) { |
|
| 50 | + if (!$this->isGraphQLType($config)) { |
|
| 51 | 51 | $config['type'] = $this->wrapType($config['type']); |
| 52 | 52 | } |
| 53 | 53 | |