@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * For the full copyright and license information, please view the LICENSE |
| 6 | 6 | * file that was distributed with this source code. |
| 7 | 7 | */ |
| 8 | -declare(strict_types=1); |
|
| 8 | +declare(strict_types = 1); |
|
| 9 | 9 | |
| 10 | 10 | namespace Railt\Adapters\Webonyx\Builders; |
| 11 | 11 | |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | return new InterfaceType([ |
| 27 | 27 | 'name' => $this->reflection->getName(), |
| 28 | 28 | 'description' => $this->reflection->getDescription(), |
| 29 | - 'fields' => function (): array { |
|
| 29 | + 'fields' => function(): array { |
|
| 30 | 30 | return []; |
| 31 | 31 | }, |
| 32 | 32 | ]); |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * For the full copyright and license information, please view the LICENSE |
| 6 | 6 | * file that was distributed with this source code. |
| 7 | 7 | */ |
| 8 | -declare(strict_types=1); |
|
| 8 | +declare(strict_types = 1); |
|
| 9 | 9 | |
| 10 | 10 | namespace Railt\Adapters\Webonyx\Builders; |
| 11 | 11 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | return new ObjectType([ |
| 28 | 28 | 'name' => $this->reflection->getName(), |
| 29 | 29 | 'description' => $this->reflection->getDescription(), |
| 30 | - 'fields' => function (): array { |
|
| 30 | + 'fields' => function(): array { |
|
| 31 | 31 | return FieldBuilder::buildFields($this->reflection, $this->getRegistry()); |
| 32 | 32 | }, |
| 33 | 33 | 'interfaces' => $this->buildInterfaces(), |
@@ -5,7 +5,7 @@ |
||
| 5 | 5 | * For the full copyright and license information, please view the LICENSE |
| 6 | 6 | * file that was distributed with this source code. |
| 7 | 7 | */ |
| 8 | -declare(strict_types=1); |
|
| 8 | +declare(strict_types = 1); |
|
| 9 | 9 | |
| 10 | 10 | namespace Railt\Adapters\Webonyx\Builders; |
| 11 | 11 | |