@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | use Railt\Reflection\Contracts\Document; |
| 15 | 15 | use Railt\SDL\Exception\CompilerException; |
| 16 | 16 | |
| 17 | -if (! \function_exists('sdl')) { |
|
| 17 | +if (!\function_exists('sdl')) { |
|
| 18 | 18 | /** |
| 19 | 19 | * @param string $fileOrSources |
| 20 | 20 | * @param bool $filename |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | } |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | -if (! \function_exists('object_to_string')) { |
|
| 33 | +if (!\function_exists('object_to_string')) { |
|
| 34 | 34 | /** |
| 35 | 35 | * @param object $object |
| 36 | 36 | * @return string |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | : \spl_object_hash($object); |
| 45 | 45 | |
| 46 | 46 | if (is_renderable($object)) { |
| 47 | - return \sprintf('%s(%s)#%s', \get_class($object), (string)$object, $hash); |
|
| 47 | + return \sprintf('%s(%s)#%s', \get_class($object), (string) $object, $hash); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | return \sprintf('%s#%s', \get_class($object), $hash); |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | |
| 55 | -if (! \function_exists('is_renderable')) { |
|
| 55 | +if (!\function_exists('is_renderable')) { |
|
| 56 | 56 | /** |
| 57 | 57 | * @param mixed $value |
| 58 | 58 | * @return bool |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | yield from $name = $this->getArgumentName($argument); |
| 48 | 48 | yield from $value = $this->getArgumentValue($argument); |
| 49 | 49 | |
| 50 | - $definition->addArgument((string)$name->getReturn(), $value->getReturn()); |
|
| 50 | + $definition->addArgument((string) $name->getReturn(), $value->getReturn()); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | return $definition; |
@@ -56,20 +56,20 @@ |
||
| 56 | 56 | public static function new($name, bool $global = null): TypeNameInterface |
| 57 | 57 | { |
| 58 | 58 | switch (true) { |
| 59 | - case $name === null || ! $name: |
|
| 60 | - return static::empty((bool)$global); |
|
| 59 | + case $name === null || !$name: |
|
| 60 | + return static::empty((bool) $global); |
|
| 61 | 61 | |
| 62 | 62 | case $name instanceof TypeNameInterface: |
| 63 | 63 | return $name; |
| 64 | 64 | |
| 65 | 65 | case \is_array($name): |
| 66 | - return static::fromArray($name, (bool)$global); |
|
| 66 | + return static::fromArray($name, (bool) $global); |
|
| 67 | 67 | |
| 68 | 68 | case \is_iterable($name): |
| 69 | - return static::fromArray(\iterator_to_array($name, false), (bool)$global); |
|
| 69 | + return static::fromArray(\iterator_to_array($name, false), (bool) $global); |
|
| 70 | 70 | |
| 71 | 71 | case \is_scalar($name): |
| 72 | - return static::fromString((string)$name, $global); |
|
| 72 | + return static::fromString((string) $name, $global); |
|
| 73 | 73 | |
| 74 | 74 | default: |
| 75 | 75 | $error = 'Unsupported argument type of %s(self|array|iterable|scalar $name = %s)'; |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | protected function format(TypeNameInterface $name, iterable $arguments): string |
| 35 | 35 | { |
| 36 | - return $this->formatName($name) . $this->formatArguments($arguments); |
|
| 36 | + return $this->formatName($name).$this->formatArguments($arguments); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | if (\count($result)) { |
| 52 | - return 'Of' . \implode('And', $result); |
|
| 52 | + return 'Of'.\implode('And', $result); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | return ''; |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | $value = $argument->getValue(); |
| 65 | 65 | $suffix = $value instanceof TypeInvocation ? $this->formatType($value) : $this->formatArgument($value); |
| 66 | 66 | |
| 67 | - return \ucfirst($argument->getName()) . $suffix; |
|
| 67 | + return \ucfirst($argument->getName()).$suffix; |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | /** |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | */ |
| 74 | 74 | protected function formatType(TypeInvocation $type): string |
| 75 | 75 | { |
| 76 | - return $this->formatName($type->getTypeName()) . $this->formatArguments($type->getArguments()); |
|
| 76 | + return $this->formatName($type->getTypeName()).$this->formatArguments($type->getArguments()); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |