@@ -25,13 +25,13 @@ discard block |
||
25 | 25 | public function __construct( |
26 | 26 | array $values = [], |
27 | 27 | private bool $overwrite = false |
28 | - ) { |
|
28 | + ){ |
|
29 | 29 | $this->values = $values + $_ENV + $_SERVER; |
30 | 30 | } |
31 | 31 | |
32 | 32 | public function getID(): string |
33 | 33 | { |
34 | - if (empty($this->id)) { |
|
34 | + if (empty($this->id)){ |
|
35 | 35 | $this->id = \md5(\serialize($this->values)); |
36 | 36 | } |
37 | 37 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | public function set(string $name, mixed $value): self |
42 | 42 | { |
43 | - if (\array_key_exists($name, $this->values) && !$this->overwrite) { |
|
43 | + if (\array_key_exists($name, $this->values) && !$this->overwrite){ |
|
44 | 44 | return $this; |
45 | 45 | } |
46 | 46 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | public function get(string $name, mixed $default = null): mixed |
56 | 56 | { |
57 | - if (isset($this->values[$name])) { |
|
57 | + if (isset($this->values[$name])){ |
|
58 | 58 | return $this->normalize($this->values[$name]); |
59 | 59 | } |
60 | 60 | |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | { |
69 | 69 | $result = []; |
70 | 70 | |
71 | - foreach ($this->values as $key => $value) { |
|
71 | + foreach ($this->values as $key => $value){ |
|
72 | 72 | $result[$key] = $this->normalize($value); |
73 | 73 | } |
74 | 74 | |
@@ -77,12 +77,12 @@ discard block |
||
77 | 77 | |
78 | 78 | protected function normalize(mixed $value): mixed |
79 | 79 | { |
80 | - if (!\is_string($value)) { |
|
80 | + if (!\is_string($value)){ |
|
81 | 81 | return $value; |
82 | 82 | } |
83 | 83 | |
84 | 84 | $alias = \strtolower($value); |
85 | - if (isset(self::VALUE_MAP[$alias])) { |
|
85 | + if (isset(self::VALUE_MAP[$alias])){ |
|
86 | 86 | return self::VALUE_MAP[$alias]; |
87 | 87 | } |
88 | 88 |
@@ -31,7 +31,8 @@ discard block |
||
31 | 31 | |
32 | 32 | public function getID(): string |
33 | 33 | { |
34 | - if (empty($this->id)) { |
|
34 | + if (empty($this->id)) |
|
35 | + { |
|
35 | 36 | $this->id = \md5(\serialize($this->values)); |
36 | 37 | } |
37 | 38 | |
@@ -40,7 +41,8 @@ discard block |
||
40 | 41 | |
41 | 42 | public function set(string $name, mixed $value): self |
42 | 43 | { |
43 | - if (\array_key_exists($name, $this->values) && !$this->overwrite) { |
|
44 | + if (\array_key_exists($name, $this->values) && !$this->overwrite) |
|
45 | + { |
|
44 | 46 | return $this; |
45 | 47 | } |
46 | 48 | |
@@ -54,7 +56,8 @@ discard block |
||
54 | 56 | |
55 | 57 | public function get(string $name, mixed $default = null): mixed |
56 | 58 | { |
57 | - if (isset($this->values[$name])) { |
|
59 | + if (isset($this->values[$name])) |
|
60 | + { |
|
58 | 61 | return $this->normalize($this->values[$name]); |
59 | 62 | } |
60 | 63 | |
@@ -68,7 +71,8 @@ discard block |
||
68 | 71 | { |
69 | 72 | $result = []; |
70 | 73 | |
71 | - foreach ($this->values as $key => $value) { |
|
74 | + foreach ($this->values as $key => $value) |
|
75 | + { |
|
72 | 76 | $result[$key] = $this->normalize($value); |
73 | 77 | } |
74 | 78 | |
@@ -77,12 +81,14 @@ discard block |
||
77 | 81 | |
78 | 82 | protected function normalize(mixed $value): mixed |
79 | 83 | { |
80 | - if (!\is_string($value)) { |
|
84 | + if (!\is_string($value)) |
|
85 | + { |
|
81 | 86 | return $value; |
82 | 87 | } |
83 | 88 | |
84 | 89 | $alias = \strtolower($value); |
85 | - if (isset(self::VALUE_MAP[$alias])) { |
|
90 | + if (isset(self::VALUE_MAP[$alias])) |
|
91 | + { |
|
86 | 92 | return self::VALUE_MAP[$alias]; |
87 | 93 | } |
88 | 94 |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | public function __construct( |
20 | 20 | string $directory, |
21 | 21 | private readonly FilesInterface $files |
22 | - ) { |
|
22 | + ){ |
|
23 | 23 | $this->directory = \rtrim($directory, '/'); |
24 | 24 | } |
25 | 25 | |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | { |
31 | 31 | $filename = $this->getFilename($section); |
32 | 32 | |
33 | - if (!\file_exists($filename)) { |
|
33 | + if (!\file_exists($filename)){ |
|
34 | 34 | return null; |
35 | 35 | } |
36 | 36 | |
37 | - try { |
|
37 | + try{ |
|
38 | 38 | return include($filename); |
39 | - } catch (\Throwable) { |
|
39 | + }catch (\Throwable){ |
|
40 | 40 | return null; |
41 | 41 | } |
42 | 42 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | { |
46 | 46 | $this->files->write( |
47 | 47 | $this->getFilename($section), |
48 | - '<?php return ' . \var_export($data, true) . ';', |
|
48 | + '<?php return '.\var_export($data, true).';', |
|
49 | 49 | FilesInterface::RUNTIME, |
50 | 50 | true |
51 | 51 | ); |
@@ -30,13 +30,17 @@ |
||
30 | 30 | { |
31 | 31 | $filename = $this->getFilename($section); |
32 | 32 | |
33 | - if (!\file_exists($filename)) { |
|
33 | + if (!\file_exists($filename)) |
|
34 | + { |
|
34 | 35 | return null; |
35 | 36 | } |
36 | 37 | |
37 | - try { |
|
38 | + try |
|
39 | + { |
|
38 | 40 | return include($filename); |
39 | - } catch (\Throwable) { |
|
41 | + } |
|
42 | + catch (\Throwable) |
|
43 | + { |
|
40 | 44 | return null; |
41 | 45 | } |
42 | 46 | } |
@@ -22,13 +22,13 @@ discard block |
||
22 | 22 | private readonly InvokerInterface $invoker, |
23 | 23 | private readonly BinderInterface $binder, |
24 | 24 | private readonly AttributeReader $reader |
25 | - ) { |
|
25 | + ){ |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | public function createInjection(\ReflectionClass $class, string $context = null): UnitEnum |
29 | 29 | { |
30 | 30 | $attribute = $this->reader->firstClassMetadata($class, ProvideFrom::class); |
31 | - if ($attribute === null) { |
|
31 | + if ($attribute === null){ |
|
32 | 32 | throw new InjectionException( |
33 | 33 | \sprintf( |
34 | 34 | 'Class `%s` should contain `%s` attribute with defined detector method.', |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | private function validateClass(\ReflectionClass $class, ProvideFrom $attribute): void |
64 | 64 | { |
65 | - if (!$class->isEnum()) { |
|
65 | + if (!$class->isEnum()){ |
|
66 | 66 | throw new InjectionException( |
67 | 67 | \sprintf( |
68 | 68 | 'Class `%s` should be an enum.', |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | ); |
72 | 72 | } |
73 | 73 | |
74 | - if (!$class->hasMethod($attribute->method)) { |
|
74 | + if (!$class->hasMethod($attribute->method)){ |
|
75 | 75 | throw new InjectionException( |
76 | 76 | \sprintf( |
77 | 77 | 'Class `%s` does not contain `%s` method.', |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | ); |
82 | 82 | } |
83 | 83 | |
84 | - if (!$class->getMethod($attribute->method)->isStatic()) { |
|
84 | + if (!$class->getMethod($attribute->method)->isStatic()){ |
|
85 | 85 | throw new InjectionException( |
86 | 86 | \sprintf( |
87 | 87 | 'Class method `%s::%s` should be static.', |
@@ -28,7 +28,8 @@ discard block |
||
28 | 28 | public function createInjection(\ReflectionClass $class, string $context = null): UnitEnum |
29 | 29 | { |
30 | 30 | $attribute = $this->reader->firstClassMetadata($class, ProvideFrom::class); |
31 | - if ($attribute === null) { |
|
31 | + if ($attribute === null) |
|
32 | + { |
|
32 | 33 | throw new InjectionException( |
33 | 34 | \sprintf( |
34 | 35 | 'Class `%s` should contain `%s` attribute with defined detector method.', |
@@ -62,7 +63,8 @@ discard block |
||
62 | 63 | */ |
63 | 64 | private function validateClass(\ReflectionClass $class, ProvideFrom $attribute): void |
64 | 65 | { |
65 | - if (!$class->isEnum()) { |
|
66 | + if (!$class->isEnum()) |
|
67 | + { |
|
66 | 68 | throw new InjectionException( |
67 | 69 | \sprintf( |
68 | 70 | 'Class `%s` should be an enum.', |
@@ -71,7 +73,8 @@ discard block |
||
71 | 73 | ); |
72 | 74 | } |
73 | 75 | |
74 | - if (!$class->hasMethod($attribute->method)) { |
|
76 | + if (!$class->hasMethod($attribute->method)) |
|
77 | + { |
|
75 | 78 | throw new InjectionException( |
76 | 79 | \sprintf( |
77 | 80 | 'Class `%s` does not contain `%s` method.', |
@@ -81,7 +84,8 @@ discard block |
||
81 | 84 | ); |
82 | 85 | } |
83 | 86 | |
84 | - if (!$class->getMethod($attribute->method)->isStatic()) { |
|
87 | + if (!$class->getMethod($attribute->method)->isStatic()) |
|
88 | + { |
|
85 | 89 | throw new InjectionException( |
86 | 90 | \sprintf( |
87 | 91 | 'Class method `%s::%s` should be static.', |
@@ -11,6 +11,6 @@ |
||
11 | 11 | { |
12 | 12 | public function __construct( |
13 | 13 | public readonly string $method |
14 | - ) { |
|
14 | + ){ |
|
15 | 15 | } |
16 | 16 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | ContainerInterface $container, |
37 | 37 | private readonly DirectoriesInterface $directories, |
38 | 38 | private readonly BinderInterface $binder |
39 | - ) { |
|
39 | + ){ |
|
40 | 40 | $this->loaders = [ |
41 | 41 | 'php' => $container->get(PhpLoader::class), |
42 | 42 | 'json' => $container->get(JsonLoader::class), |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | public function addLoader(string $ext, FileLoaderInterface $loader): void |
49 | 49 | { |
50 | - if (!isset($this->loaders[$ext]) || $this->loaders[$ext]::class !== $loader::class) { |
|
50 | + if (!isset($this->loaders[$ext]) || $this->loaders[$ext]::class !== $loader::class){ |
|
51 | 51 | $this->loaders[$ext] = $loader; |
52 | 52 | $this->binder->bindSingleton(ConfigManager::class, $this->createConfigManager()); |
53 | 53 | } |
@@ -47,7 +47,8 @@ |
||
47 | 47 | |
48 | 48 | public function addLoader(string $ext, FileLoaderInterface $loader): void |
49 | 49 | { |
50 | - if (!isset($this->loaders[$ext]) || $this->loaders[$ext]::class !== $loader::class) { |
|
50 | + if (!isset($this->loaders[$ext]) || $this->loaders[$ext]::class !== $loader::class) |
|
51 | + { |
|
51 | 52 | $this->loaders[$ext] = $loader; |
52 | 53 | $this->binder->bindSingleton(ConfigManager::class, $this->createConfigManager()); |
53 | 54 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | { |
27 | 27 | $this->dispatcher?->dispatch(new Finalizing($this)); |
28 | 28 | |
29 | - foreach ($this->finalizers as $finalizer) { |
|
29 | + foreach ($this->finalizers as $finalizer){ |
|
30 | 30 | \call_user_func($finalizer, $terminate); |
31 | 31 | } |
32 | 32 | } |
@@ -26,7 +26,8 @@ |
||
26 | 26 | { |
27 | 27 | $this->dispatcher?->dispatch(new Finalizing($this)); |
28 | 28 | |
29 | - foreach ($this->finalizers as $finalizer) { |
|
29 | + foreach ($this->finalizers as $finalizer) |
|
30 | + { |
|
30 | 31 | \call_user_func($finalizer, $terminate); |
31 | 32 | } |
32 | 33 | } |
@@ -41,11 +41,11 @@ |
||
41 | 41 | public function testConfigure(): void |
42 | 42 | { |
43 | 43 | $core = $this->getCore( |
44 | - $this->getStaticLocator([ |
|
45 | - HelperCommand::class, |
|
46 | - ConfigureCommand::class, |
|
47 | - TestCommand::class, |
|
48 | - ]) |
|
44 | + $this->getStaticLocator([ |
|
45 | + HelperCommand::class, |
|
46 | + ConfigureCommand::class, |
|
47 | + TestCommand::class, |
|
48 | + ]) |
|
49 | 49 | ); |
50 | 50 | |
51 | 51 | $this->container->bind(Console::class, $core); |
@@ -14,7 +14,7 @@ |
||
14 | 14 | public function testLazyCommandCreationInCommandLocator(): void |
15 | 15 | { |
16 | 16 | $locator = $this->getCommandLocator( |
17 | - new class() implements ScopedClassesInterface { |
|
17 | + new class() implements ScopedClassesInterface{ |
|
18 | 18 | public function getScopedClasses(string $scope, $target = null): array |
19 | 19 | { |
20 | 20 | return [ |
@@ -14,7 +14,8 @@ |
||
14 | 14 | public function testLazyCommandCreationInCommandLocator(): void |
15 | 15 | { |
16 | 16 | $locator = $this->getCommandLocator( |
17 | - new class() implements ScopedClassesInterface { |
|
17 | + new class() implements ScopedClassesInterface |
|
18 | + { |
|
18 | 19 | public function getScopedClasses(string $scope, $target = null): array |
19 | 20 | { |
20 | 21 | return [ |
@@ -27,14 +27,14 @@ |
||
27 | 27 | |
28 | 28 | $interceptor->shouldReceive('process') |
29 | 29 | ->once() |
30 | - ->withArgs(function (string $controller, string $action, array $parameters, CoreInterface $core) { |
|
30 | + ->withArgs(function (string $controller, string $action, array $parameters, CoreInterface $core){ |
|
31 | 31 | return $controller === TestCommand::class |
32 | 32 | && $action === 'perform' |
33 | 33 | && $parameters['input'] instanceof InputInterface |
34 | 34 | && $parameters['output'] instanceof OutputInterface |
35 | 35 | && $parameters['command'] instanceof TestCommand; |
36 | 36 | }) |
37 | - ->andReturnUsing(function (string $controller, string $action, array $parameters, CoreInterface $core) { |
|
37 | + ->andReturnUsing(function (string $controller, string $action, array $parameters, CoreInterface $core){ |
|
38 | 38 | return $core->callAction($controller, $action, $parameters); |
39 | 39 | }); |
40 | 40 |
@@ -27,14 +27,16 @@ |
||
27 | 27 | |
28 | 28 | $interceptor->shouldReceive('process') |
29 | 29 | ->once() |
30 | - ->withArgs(function (string $controller, string $action, array $parameters, CoreInterface $core) { |
|
30 | + ->withArgs(function (string $controller, string $action, array $parameters, CoreInterface $core) |
|
31 | + { |
|
31 | 32 | return $controller === TestCommand::class |
32 | 33 | && $action === 'perform' |
33 | 34 | && $parameters['input'] instanceof InputInterface |
34 | 35 | && $parameters['output'] instanceof OutputInterface |
35 | 36 | && $parameters['command'] instanceof TestCommand; |
36 | 37 | }) |
37 | - ->andReturnUsing(function (string $controller, string $action, array $parameters, CoreInterface $core) { |
|
38 | + ->andReturnUsing(function (string $controller, string $action, array $parameters, CoreInterface $core) |
|
39 | + { |
|
38 | 40 | return $core->callAction($controller, $action, $parameters); |
39 | 41 | }); |
40 | 42 |