@@ -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\SDL\Runtime\CallStackRenderer; |
| 11 | 11 | |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | */ |
| 29 | 29 | public function __construct(Definition $definition) |
| 30 | 30 | { |
| 31 | - $this->definition = $definition; |
|
| 31 | + $this->definition = $definition; |
|
| 32 | 32 | |
| 33 | 33 | $this->file = $definition->getFileName(); |
| 34 | 34 | $this->line = $definition->getDeclarationLine(); |
@@ -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\SDL\Runtime\CallStackRenderer; |
| 11 | 11 | |
@@ -27,8 +27,8 @@ discard block |
||
| 27 | 27 | { |
| 28 | 28 | $this->trace = $trace; |
| 29 | 29 | |
| 30 | - $this->file = (string)($trace['file'] ?? 'php://input'); |
|
| 31 | - $this->line = (int)($trace['line'] ?? 0); |
|
| 30 | + $this->file = (string) ($trace['file'] ?? 'php://input'); |
|
| 31 | + $this->line = (int) ($trace['line'] ?? 0); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
@@ -54,16 +54,16 @@ discard block |
||
| 54 | 54 | $result = $trace['function']; |
| 55 | 55 | |
| 56 | 56 | if (\array_key_exists('class', $trace)) { |
| 57 | - $result = $trace['class'] . $trace['type'] . $result; |
|
| 57 | + $result = $trace['class'].$trace['type'].$result; |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | $arguments = []; |
| 61 | 61 | |
| 62 | - foreach ((array)($trace['args'] ?? []) as $argument) { |
|
| 62 | + foreach ((array) ($trace['args'] ?? []) as $argument) { |
|
| 63 | 63 | $arguments[] = $this->valueToString($argument); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - return $result . '(' . \implode(', ', $arguments) . ')'; |
|
| 66 | + return $result.'('.\implode(', ', $arguments).')'; |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
@@ -104,10 +104,10 @@ discard block |
||
| 104 | 104 | $body = \implode(', ', $parts); |
| 105 | 105 | |
| 106 | 106 | if (\is_object($iterator)) { |
| 107 | - return $this->objectToString($iterator) . '<' . $body . '>'; |
|
| 107 | + return $this->objectToString($iterator).'<'.$body.'>'; |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - return '[' . $body . ']'; |
|
| 110 | + return '['.$body.']'; |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | /** |
@@ -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\SDL\Runtime\CallStackRenderer; |
| 11 | 11 | |
@@ -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\SDL\Runtime; |
| 11 | 11 | |
@@ -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\SDL\Reflection\Builder\Behavior; |
| 11 | 11 | |
@@ -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\SDL\Reflection\Builder\Invocations; |
| 11 | 11 | |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | */ |
| 124 | 124 | private function toFloat(LeafInterface $ast): float |
| 125 | 125 | { |
| 126 | - return (float)$ast->getValue(); |
|
| 126 | + return (float) $ast->getValue(); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | /** |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | */ |
| 133 | 133 | private function toInt(LeafInterface $ast): int |
| 134 | 134 | { |
| 135 | - return (int)$ast->getValue(); |
|
| 135 | + return (int) $ast->getValue(); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | return \substr($ast->getValue(), 3, -3); |
| 169 | 169 | } |
| 170 | 170 | |
| 171 | - return (string)$ast->getValue(); |
|
| 171 | + return (string) $ast->getValue(); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | /** |
@@ -201,7 +201,7 @@ discard block |
||
| 201 | 201 | // TODO Probably may be escaped by backslash like "\\u0000" |
| 202 | 202 | $pattern = '/\\\\u([0-9a-fA-F]{4})/'; |
| 203 | 203 | |
| 204 | - $callee = function (array $matches): string { |
|
| 204 | + $callee = function(array $matches): string { |
|
| 205 | 205 | [$char, $code] = [$matches[0], $matches[1]]; |
| 206 | 206 | |
| 207 | 207 | try { |
@@ -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\SDL\Reflection\Builder\Invocations; |
| 11 | 11 | |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | /** @var ArgumentDefinition|null $argument */ |
| 57 | 57 | $argument = $definition->getArgument($name); |
| 58 | 58 | |
| 59 | - if (! $argument) { |
|
| 59 | + if (!$argument) { |
|
| 60 | 60 | $this->getCompiler()->getCallStack()->push($definition); |
| 61 | 61 | |
| 62 | 62 | $error = \sprintf('Argument %s not defined in %s', $name, $definition); |
@@ -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\SDL\Reflection\Builder\Invocations; |
| 11 | 11 | |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | protected function onCompile(NodeInterface $ast): bool |
| 67 | 67 | { |
| 68 | - $key = (string)$ast->getChild(0)->getChild(0)->getValue(); |
|
| 68 | + $key = (string) $ast->getChild(0)->getChild(0)->getValue(); |
|
| 69 | 69 | $value = $ast->getChild(1)->getChild(0); |
| 70 | 70 | |
| 71 | 71 | $this->arguments[$key] = $this->parseValue($value, $this->parentType, \array_merge($this->path, [$key])); |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | */ |
| 98 | 98 | public function getTypeDefinition(): ?TypeDefinition |
| 99 | 99 | { |
| 100 | - $reduce = function (?InputDefinition $carry, $item): ?TypeDefinition { |
|
| 100 | + $reduce = function(?InputDefinition $carry, $item): ?TypeDefinition { |
|
| 101 | 101 | /** @var ArgumentDefinition|null $argument */ |
| 102 | 102 | $argument = $carry->getArgument($item); |
| 103 | 103 | // TODO $argument can be null. Add validation? |
@@ -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\SDL\Reflection\Builder\Invocations\Directive; |
| 11 | 11 | |