@@ -26,7 +26,7 @@ |
||
| 26 | 26 | |
| 27 | 27 | protected function mapDirectories(array $directories): array |
| 28 | 28 | { |
| 29 | - $dir = \dirname(__DIR__) . '/Fixtures'; |
|
| 29 | + $dir = \dirname(__DIR__).'/Fixtures'; |
|
| 30 | 30 | |
| 31 | 31 | return $directories + ['config' => $dir, 'app' => $dir, 'resources' => $dir, 'runtime' => $dir]; |
| 32 | 32 | } |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | |
| 27 | 27 | protected function mapDirectories(array $directories): array |
| 28 | 28 | { |
| 29 | - $dir = \dirname(__DIR__) . '/Fixtures'; |
|
| 29 | + $dir = \dirname(__DIR__).'/Fixtures'; |
|
| 30 | 30 | |
| 31 | 31 | return $directories + ['config' => $dir, 'app' => $dir, 'resources' => $dir, 'runtime' => $dir]; |
| 32 | 32 | } |
@@ -11,6 +11,6 @@ |
||
| 11 | 11 | { |
| 12 | 12 | public function init(TokenizerBootloader $tokenizer): void |
| 13 | 13 | { |
| 14 | - $tokenizer->addDirectory(\dirname(__DIR__, 2) . '/Fixtures/Bootloader'); |
|
| 14 | + $tokenizer->addDirectory(\dirname(__DIR__, 2).'/Fixtures/Bootloader'); |
|
| 15 | 15 | } |
| 16 | 16 | } |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | |
| 12 | 12 | public function __construct(array $casters = []) |
| 13 | 13 | { |
| 14 | - foreach ($casters as $caster) { |
|
| 14 | + foreach ($casters as $caster){ |
|
| 15 | 15 | $this->register($caster); |
| 16 | 16 | } |
| 17 | 17 | } |
@@ -11,7 +11,8 @@ |
||
| 11 | 11 | |
| 12 | 12 | public function __construct(array $casters = []) |
| 13 | 13 | { |
| 14 | - foreach ($casters as $caster) { |
|
| 14 | + foreach ($casters as $caster) |
|
| 15 | + { |
|
| 15 | 16 | $this->register($caster); |
| 16 | 17 | } |
| 17 | 18 | } |
@@ -31,9 +31,9 @@ |
||
| 31 | 31 | |
| 32 | 32 | public function updateValue(mixed $value): mixed |
| 33 | 33 | { |
| 34 | - try { |
|
| 34 | + try{ |
|
| 35 | 35 | return ($this->filter)($value, ...$this->args); |
| 36 | - } catch (\Throwable $e) { |
|
| 36 | + }catch (\Throwable $e){ |
|
| 37 | 37 | throw new SetterException($e); |
| 38 | 38 | } |
| 39 | 39 | } |
@@ -31,9 +31,12 @@ |
||
| 31 | 31 | |
| 32 | 32 | public function updateValue(mixed $value): mixed |
| 33 | 33 | { |
| 34 | - try { |
|
| 34 | + try |
|
| 35 | + { |
|
| 35 | 36 | return ($this->filter)($value, ...$this->args); |
| 36 | - } catch (\Throwable $e) { |
|
| 37 | + } |
|
| 38 | + catch (\Throwable $e) |
|
| 39 | + { |
|
| 37 | 40 | throw new SetterException($e); |
| 38 | 41 | } |
| 39 | 42 | } |
@@ -32,11 +32,11 @@ |
||
| 32 | 32 | public function hasInstance(string $alias): bool |
| 33 | 33 | { |
| 34 | 34 | $parent = $this->scope->getParent(); |
| 35 | - if ($parent !== null && $parent->hasInstance($alias)) { |
|
| 35 | + if ($parent !== null && $parent->hasInstance($alias)){ |
|
| 36 | 36 | return true; |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - if (!$this->container->has($alias)) { |
|
| 39 | + if (!$this->container->has($alias)){ |
|
| 40 | 40 | return false; |
| 41 | 41 | } |
| 42 | 42 | |
@@ -32,11 +32,13 @@ |
||
| 32 | 32 | public function hasInstance(string $alias): bool |
| 33 | 33 | { |
| 34 | 34 | $parent = $this->scope->getParent(); |
| 35 | - if ($parent !== null && $parent->hasInstance($alias)) { |
|
| 35 | + if ($parent !== null && $parent->hasInstance($alias)) |
|
| 36 | + { |
|
| 36 | 37 | return true; |
| 37 | 38 | } |
| 38 | 39 | |
| 39 | - if (!$this->container->has($alias)) { |
|
| 40 | + if (!$this->container->has($alias)) |
|
| 41 | + { |
|
| 40 | 42 | return false; |
| 41 | 43 | } |
| 42 | 44 | |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | { |
| 19 | 19 | public function testListen(): void |
| 20 | 20 | { |
| 21 | - $handler = new class($this->createMock(InvokerInterface::class)) extends JobHandler {}; |
|
| 21 | + $handler = new class($this->createMock(InvokerInterface::class)) extends JobHandler{}; |
|
| 22 | 22 | |
| 23 | 23 | $registry = new QueueRegistry( |
| 24 | 24 | new Container(), |
@@ -18,7 +18,9 @@ |
||
| 18 | 18 | { |
| 19 | 19 | public function testListen(): void |
| 20 | 20 | { |
| 21 | - $handler = new class($this->createMock(InvokerInterface::class)) extends JobHandler {}; |
|
| 21 | + $handler = new class($this->createMock(InvokerInterface::class)) extends JobHandler |
|
| 22 | + { |
|
| 23 | +}; |
|
| 22 | 24 | |
| 23 | 25 | $registry = new QueueRegistry( |
| 24 | 26 | new Container(), |
@@ -101,7 +101,8 @@ discard block |
||
| 101 | 101 | */ |
| 102 | 102 | public function getLocaleDirectory(string $locale, ?string $directory = null): string |
| 103 | 103 | { |
| 104 | - if ($directory !== null) { |
|
| 104 | + if ($directory !== null) |
|
| 105 | + { |
|
| 105 | 106 | return \rtrim($directory, '/') . '/' . $locale . '/'; |
| 106 | 107 | } |
| 107 | 108 | |
@@ -116,9 +117,12 @@ discard block |
||
| 116 | 117 | $bundle = \strtolower(\str_replace(['/', '\\'], '-', $bundle)); |
| 117 | 118 | $domains = (array) ($this->config['domains'] ?? []); |
| 118 | 119 | |
| 119 | - foreach ($domains as $domain => $patterns) { |
|
| 120 | - foreach ($patterns as $pattern) { |
|
| 121 | - if ($this->matcher->matches($bundle, $pattern)) { |
|
| 120 | + foreach ($domains as $domain => $patterns) |
|
| 121 | + { |
|
| 122 | + foreach ($patterns as $pattern) |
|
| 123 | + { |
|
| 124 | + if ($this->matcher->matches($bundle, $pattern)) |
|
| 125 | + { |
|
| 122 | 126 | return $domain; |
| 123 | 127 | } |
| 124 | 128 | } |
@@ -101,11 +101,11 @@ discard block |
||
| 101 | 101 | */ |
| 102 | 102 | public function getLocaleDirectory(string $locale, ?string $directory = null): string |
| 103 | 103 | { |
| 104 | - if ($directory !== null) { |
|
| 105 | - return \rtrim($directory, '/') . '/' . $locale . '/'; |
|
| 104 | + if ($directory !== null){ |
|
| 105 | + return \rtrim($directory, '/').'/'.$locale.'/'; |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - return \rtrim($this->getLocalesDirectory(), '/') . '/' . $locale . '/'; |
|
| 108 | + return \rtrim($this->getLocalesDirectory(), '/').'/'.$locale.'/'; |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -114,11 +114,11 @@ discard block |
||
| 114 | 114 | public function resolveDomain(string $bundle): string |
| 115 | 115 | { |
| 116 | 116 | $bundle = \strtolower(\str_replace(['/', '\\'], '-', $bundle)); |
| 117 | - $domains = (array) ($this->config['domains'] ?? []); |
|
| 117 | + $domains = (array)($this->config['domains'] ?? []); |
|
| 118 | 118 | |
| 119 | - foreach ($domains as $domain => $patterns) { |
|
| 120 | - foreach ($patterns as $pattern) { |
|
| 121 | - if ($this->matcher->matches($bundle, $pattern)) { |
|
| 119 | + foreach ($domains as $domain => $patterns){ |
|
| 120 | + foreach ($patterns as $pattern){ |
|
| 121 | + if ($this->matcher->matches($bundle, $pattern)){ |
|
| 122 | 122 | return $domain; |
| 123 | 123 | } |
| 124 | 124 | } |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | public function perform(): int |
| 16 | 16 | { |
| 17 | 17 | $prototyped = $this->locator->getTargetClasses(); |
| 18 | - if ($prototyped === []) { |
|
| 18 | + if ($prototyped === []){ |
|
| 19 | 19 | $this->writeln('<comment>No prototyped classes found.</comment>'); |
| 20 | 20 | |
| 21 | 21 | return self::SUCCESS; |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | $grid = $this->table(['Class:', 'Property:', 'Target:']); |
| 25 | 25 | |
| 26 | - foreach ($prototyped as $class) { |
|
| 26 | + foreach ($prototyped as $class){ |
|
| 27 | 27 | $proto = $this->getPrototypeProperties($class, $prototyped); |
| 28 | 28 | |
| 29 | 29 | $grid->addRow([$class->getName(), $this->mergeNames($proto), $this->mergeTargets($proto)]); |
@@ -15,7 +15,8 @@ discard block |
||
| 15 | 15 | public function perform(): int |
| 16 | 16 | { |
| 17 | 17 | $prototyped = $this->locator->getTargetClasses(); |
| 18 | - if ($prototyped === []) { |
|
| 18 | + if ($prototyped === []) |
|
| 19 | + { |
|
| 19 | 20 | $this->writeln('<comment>No prototyped classes found.</comment>'); |
| 20 | 21 | |
| 21 | 22 | return self::SUCCESS; |
@@ -23,7 +24,8 @@ discard block |
||
| 23 | 24 | |
| 24 | 25 | $grid = $this->table(['Class:', 'Property:', 'Target:']); |
| 25 | 26 | |
| 26 | - foreach ($prototyped as $class) { |
|
| 27 | + foreach ($prototyped as $class) |
|
| 28 | + { |
|
| 27 | 29 | $proto = $this->getPrototypeProperties($class, $prototyped); |
| 28 | 30 | |
| 29 | 31 | $grid->addRow([$class->getName(), $this->mergeNames($proto), $this->mergeTargets($proto)]); |