@@ -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; |
| 11 | 11 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | if ( |
| 56 | 56 | !array_key_exists($name, $input) && // Empty argument |
| 57 | - !$default->hasDefaultValue() && // And has no default value |
|
| 57 | + !$default->hasDefaultValue() && // And has no default value |
|
| 58 | 58 | $default->getType()->nonNull() // And required |
| 59 | 59 | ) { |
| 60 | 60 | $message = 'Argument %s required for field %s'; |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | */ |
| 124 | 124 | public function getRelations(): iterable |
| 125 | 125 | { |
| 126 | - throw new \LogicException(__METHOD__ . ' not implemented yet'); |
|
| 126 | + throw new \LogicException(__METHOD__.' not implemented yet'); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | /** |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | |
| 137 | 137 | public function hasRelation(string $name): bool |
| 138 | 138 | { |
| 139 | - throw new \LogicException(__METHOD__ . ' not implemented yet'); |
|
| 139 | + throw new \LogicException(__METHOD__.' not implemented yet'); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | /** |