@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | protected function formatTopics(array $topics): array |
18 | 18 | { |
19 | - return \array_map(fn (string|\Stringable $topic) => (string) $topic, $topics); |
|
19 | + return \array_map(fn (string | \Stringable $topic) => (string)$topic, $topics); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * @param iterable<T>|T $entries |
25 | 25 | * @return array<T> |
26 | 26 | */ |
27 | - protected function toArray(iterable|string|\Stringable $entries): array |
|
27 | + protected function toArray(iterable | string | \Stringable $entries): array |
|
28 | 28 | { |
29 | 29 | return match (true) { |
30 | 30 | \is_array($entries) => $entries, |
@@ -27,7 +27,7 @@ |
||
27 | 27 | |
28 | 28 | public function __construct( |
29 | 29 | private readonly ConfiguratorInterface $config |
30 | - ) { |
|
30 | + ){ |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | public function registerDriverAlias(string $driverClass, string $alias): void |
@@ -26,5 +26,5 @@ |
||
26 | 26 | * @param MessagesList $messages |
27 | 27 | * @throws BroadcastException |
28 | 28 | */ |
29 | - public function publish(iterable|string|\Stringable $topics, iterable|string $messages): void; |
|
29 | + public function publish(iterable | string | \Stringable $topics, iterable | string $messages): void; |
|
30 | 30 | } |
@@ -22,20 +22,20 @@ discard block |
||
22 | 22 | private readonly ResponseFactoryInterface $responseFactory, |
23 | 23 | private readonly ?string $authorizationPath = null, |
24 | 24 | private readonly ?EventDispatcherInterface $dispatcher = null |
25 | - ) { |
|
25 | + ){ |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | public function process( |
29 | 29 | ServerRequestInterface $request, |
30 | 30 | RequestHandlerInterface $handler |
31 | 31 | ): ResponseInterface { |
32 | - if ($request->getUri()->getPath() !== $this->authorizationPath) { |
|
32 | + if ($request->getUri()->getPath() !== $this->authorizationPath){ |
|
33 | 33 | return $handler->handle($request); |
34 | 34 | } |
35 | 35 | |
36 | - if ($this->broadcast instanceof GuardInterface) { |
|
36 | + if ($this->broadcast instanceof GuardInterface){ |
|
37 | 37 | $status = $this->broadcast->authorize($request); |
38 | - } else { |
|
38 | + }else{ |
|
39 | 39 | $status = new AuthorizationStatus( |
40 | 40 | success: true, |
41 | 41 | topics: null |
@@ -44,11 +44,11 @@ discard block |
||
44 | 44 | |
45 | 45 | $this->dispatcher?->dispatch(new Authorized($status, $request)); |
46 | 46 | |
47 | - if ($status->response !== null) { |
|
47 | + if ($status->response !== null){ |
|
48 | 48 | return $status->response; |
49 | 49 | } |
50 | 50 | |
51 | - if (!$status->success) { |
|
51 | + if (!$status->success){ |
|
52 | 52 | return $this->responseFactory->createResponse(403); |
53 | 53 | } |
54 | 54 |
@@ -29,13 +29,17 @@ discard block |
||
29 | 29 | ServerRequestInterface $request, |
30 | 30 | RequestHandlerInterface $handler |
31 | 31 | ): ResponseInterface { |
32 | - if ($request->getUri()->getPath() !== $this->authorizationPath) { |
|
32 | + if ($request->getUri()->getPath() !== $this->authorizationPath) |
|
33 | + { |
|
33 | 34 | return $handler->handle($request); |
34 | 35 | } |
35 | 36 | |
36 | - if ($this->broadcast instanceof GuardInterface) { |
|
37 | + if ($this->broadcast instanceof GuardInterface) |
|
38 | + { |
|
37 | 39 | $status = $this->broadcast->authorize($request); |
38 | - } else { |
|
40 | + } |
|
41 | + else |
|
42 | + { |
|
39 | 43 | $status = new AuthorizationStatus( |
40 | 44 | success: true, |
41 | 45 | topics: null |
@@ -44,11 +48,13 @@ discard block |
||
44 | 48 | |
45 | 49 | $this->dispatcher?->dispatch(new Authorized($status, $request)); |
46 | 50 | |
47 | - if ($status->response !== null) { |
|
51 | + if ($status->response !== null) |
|
52 | + { |
|
48 | 53 | return $status->response; |
49 | 54 | } |
50 | 55 | |
51 | - if (!$status->success) { |
|
56 | + if (!$status->success) |
|
57 | + { |
|
52 | 58 | return $this->responseFactory->createResponse(403); |
53 | 59 | } |
54 | 60 |
@@ -13,10 +13,10 @@ |
||
13 | 13 | */ |
14 | 14 | public function __construct( |
15 | 15 | public readonly bool $success, |
16 | - public readonly ?array $topics, |
|
16 | + public readonly ? array $topics, |
|
17 | 17 | public readonly array $attributes = [], |
18 | 18 | public readonly ?ResponseInterface $response = null |
19 | - ) { |
|
19 | + ){ |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -22,7 +22,7 @@ |
||
22 | 22 | public function setUp(): void |
23 | 23 | { |
24 | 24 | $this->app = TestApp::create([ |
25 | - 'root' => __DIR__ . '/App', |
|
25 | + 'root' => __DIR__.'/App', |
|
26 | 26 | ], false)->run(); |
27 | 27 | } |
28 | 28 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $class = $this->classify($name); |
40 | 40 | $postfix = $this->elementPostfix($element); |
41 | 41 | |
42 | - return \str_ends_with($class, $postfix) ? $class : $class . $postfix; |
|
42 | + return \str_ends_with($class, $postfix) ? $class : $class.$postfix; |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | public function classNamespace(string $element, string $name = ''): string |
@@ -47,15 +47,15 @@ discard block |
||
47 | 47 | $localNamespace = \trim($this->getOption($element, 'namespace', ''), '\\'); |
48 | 48 | ['namespace' => $namespace] = $this->parseName($name); |
49 | 49 | |
50 | - if (!empty($namespace)) { |
|
51 | - $localNamespace .= '\\' . $this->classify($namespace); |
|
50 | + if (!empty($namespace)){ |
|
51 | + $localNamespace .= '\\'.$this->classify($namespace); |
|
52 | 52 | } |
53 | 53 | |
54 | - if (empty($this->baseNamespace($element))) { |
|
54 | + if (empty($this->baseNamespace($element))){ |
|
55 | 55 | return $localNamespace; |
56 | 56 | } |
57 | 57 | |
58 | - return \trim($this->baseNamespace($element) . '\\' . $localNamespace, '\\'); |
|
58 | + return \trim($this->baseNamespace($element).'\\'.$localNamespace, '\\'); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | public function classFilename(string $element, string $name): string |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | return $this->joinPathChunks([ |
67 | 67 | $this->baseDirectory(), |
68 | 68 | \str_replace('\\', '/', $namespace), |
69 | - $this->className($element, $name) . '.php', |
|
69 | + $this->className($element, $name).'.php', |
|
70 | 70 | ], '/'); |
71 | 71 | } |
72 | 72 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | { |
78 | 78 | $class = $this->getOption($element, 'class'); |
79 | 79 | |
80 | - if (empty($class)) { |
|
80 | + if (empty($class)){ |
|
81 | 81 | throw new ScaffolderException( |
82 | 82 | \sprintf("Unable to scaffold '%s', no declaration class found", $element) |
83 | 83 | ); |
@@ -101,11 +101,11 @@ discard block |
||
101 | 101 | |
102 | 102 | private function getOption(string $element, string $section, mixed $default = null): mixed |
103 | 103 | { |
104 | - if (!isset($this->config['declarations'][$element])) { |
|
104 | + if (!isset($this->config['declarations'][$element])){ |
|
105 | 105 | throw new ScaffolderException(\sprintf("Undefined declaration '%s'.", $element)); |
106 | 106 | } |
107 | 107 | |
108 | - if (\array_key_exists($section, $this->config['declarations'][$element])) { |
|
108 | + if (\array_key_exists($section, $this->config['declarations'][$element])){ |
|
109 | 109 | return $this->config['declarations'][$element][$section]; |
110 | 110 | } |
111 | 111 | |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | { |
122 | 122 | $name = \str_replace('/', '\\', $name); |
123 | 123 | |
124 | - if (str_contains($name, '\\')) { |
|
124 | + if (str_contains($name, '\\')){ |
|
125 | 125 | $names = \explode('\\', $name); |
126 | 126 | $class = \array_pop($names); |
127 | 127 | |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | |
135 | 135 | private function baseNamespace(string $element): string |
136 | 136 | { |
137 | - if (\array_key_exists('baseNamespace', $this->config['declarations'][$element])) { |
|
138 | - return \trim((string) $this->getOption($element, 'baseNamespace', ''), '\\'); |
|
137 | + if (\array_key_exists('baseNamespace', $this->config['declarations'][$element])){ |
|
138 | + return \trim((string)$this->getOption($element, 'baseNamespace', ''), '\\'); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | return \trim($this->config['namespace'], '\\'); |
@@ -145,12 +145,12 @@ discard block |
||
145 | 145 | { |
146 | 146 | $firstChunkIterated = false; |
147 | 147 | $joinedPath = ''; |
148 | - foreach ($chunks as $chunk) { |
|
149 | - if (!$firstChunkIterated) { |
|
148 | + foreach ($chunks as $chunk){ |
|
149 | + if (!$firstChunkIterated){ |
|
150 | 150 | $firstChunkIterated = true; |
151 | 151 | $joinedPath = $chunk; |
152 | - } else { |
|
153 | - $joinedPath = \rtrim($joinedPath, $joint) . $joint . \ltrim($chunk, $joint); |
|
152 | + }else{ |
|
153 | + $joinedPath = \rtrim($joinedPath, $joint).$joint.\ltrim($chunk, $joint); |
|
154 | 154 | } |
155 | 155 | } |
156 | 156 | |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | |
160 | 160 | private function classify(string $name): string |
161 | 161 | { |
162 | - return ( new InflectorFactory() ) |
|
162 | + return (new InflectorFactory()) |
|
163 | 163 | ->build() |
164 | 164 | ->classify($name); |
165 | 165 | } |
@@ -47,11 +47,13 @@ discard block |
||
47 | 47 | $localNamespace = \trim($this->getOption($element, 'namespace', ''), '\\'); |
48 | 48 | ['namespace' => $namespace] = $this->parseName($name); |
49 | 49 | |
50 | - if (!empty($namespace)) { |
|
50 | + if (!empty($namespace)) |
|
51 | + { |
|
51 | 52 | $localNamespace .= '\\' . $this->classify($namespace); |
52 | 53 | } |
53 | 54 | |
54 | - if (empty($this->baseNamespace($element))) { |
|
55 | + if (empty($this->baseNamespace($element))) |
|
56 | + { |
|
55 | 57 | return $localNamespace; |
56 | 58 | } |
57 | 59 | |
@@ -77,7 +79,8 @@ discard block |
||
77 | 79 | { |
78 | 80 | $class = $this->getOption($element, 'class'); |
79 | 81 | |
80 | - if (empty($class)) { |
|
82 | + if (empty($class)) |
|
83 | + { |
|
81 | 84 | throw new ScaffolderException( |
82 | 85 | \sprintf("Unable to scaffold '%s', no declaration class found", $element) |
83 | 86 | ); |
@@ -101,11 +104,13 @@ discard block |
||
101 | 104 | |
102 | 105 | private function getOption(string $element, string $section, mixed $default = null): mixed |
103 | 106 | { |
104 | - if (!isset($this->config['declarations'][$element])) { |
|
107 | + if (!isset($this->config['declarations'][$element])) |
|
108 | + { |
|
105 | 109 | throw new ScaffolderException(\sprintf("Undefined declaration '%s'.", $element)); |
106 | 110 | } |
107 | 111 | |
108 | - if (\array_key_exists($section, $this->config['declarations'][$element])) { |
|
112 | + if (\array_key_exists($section, $this->config['declarations'][$element])) |
|
113 | + { |
|
109 | 114 | return $this->config['declarations'][$element][$section]; |
110 | 115 | } |
111 | 116 | |
@@ -121,7 +126,8 @@ discard block |
||
121 | 126 | { |
122 | 127 | $name = \str_replace('/', '\\', $name); |
123 | 128 | |
124 | - if (str_contains($name, '\\')) { |
|
129 | + if (str_contains($name, '\\')) |
|
130 | + { |
|
125 | 131 | $names = \explode('\\', $name); |
126 | 132 | $class = \array_pop($names); |
127 | 133 | |
@@ -134,7 +140,8 @@ discard block |
||
134 | 140 | |
135 | 141 | private function baseNamespace(string $element): string |
136 | 142 | { |
137 | - if (\array_key_exists('baseNamespace', $this->config['declarations'][$element])) { |
|
143 | + if (\array_key_exists('baseNamespace', $this->config['declarations'][$element])) |
|
144 | + { |
|
138 | 145 | return \trim((string) $this->getOption($element, 'baseNamespace', ''), '\\'); |
139 | 146 | } |
140 | 147 | |
@@ -145,11 +152,15 @@ discard block |
||
145 | 152 | { |
146 | 153 | $firstChunkIterated = false; |
147 | 154 | $joinedPath = ''; |
148 | - foreach ($chunks as $chunk) { |
|
149 | - if (!$firstChunkIterated) { |
|
155 | + foreach ($chunks as $chunk) |
|
156 | + { |
|
157 | + if (!$firstChunkIterated) |
|
158 | + { |
|
150 | 159 | $firstChunkIterated = true; |
151 | 160 | $joinedPath = $chunk; |
152 | - } else { |
|
161 | + } |
|
162 | + else |
|
163 | + { |
|
153 | 164 | $joinedPath = \rtrim($joinedPath, $joint) . $joint . \ltrim($chunk, $joint); |
154 | 165 | } |
155 | 166 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | namespace Spiral\Scaffolder; |
6 | 6 | |
7 | -if (!\function_exists('trimPostfix')) { |
|
7 | +if (!\function_exists('trimPostfix')){ |
|
8 | 8 | /** |
9 | 9 | * @internal |
10 | 10 | */ |
@@ -16,19 +16,19 @@ discard block |
||
16 | 16 | } |
17 | 17 | } |
18 | 18 | |
19 | -if (!\function_exists('isAssociativeArray')) { |
|
19 | +if (!\function_exists('isAssociativeArray')){ |
|
20 | 20 | /** |
21 | 21 | * @internal |
22 | 22 | */ |
23 | 23 | function isAssociativeArray(array $array): bool |
24 | 24 | { |
25 | 25 | $keys = []; |
26 | - foreach ($array as $key => $_) { |
|
27 | - if (!\is_int($key)) { |
|
26 | + foreach ($array as $key => $_){ |
|
27 | + if (!\is_int($key)){ |
|
28 | 28 | return true; |
29 | 29 | } |
30 | 30 | |
31 | - if ($key !== \count($keys)) { |
|
31 | + if ($key !== \count($keys)){ |
|
32 | 32 | return true; |
33 | 33 | } |
34 | 34 | |
@@ -39,13 +39,13 @@ discard block |
||
39 | 39 | } |
40 | 40 | } |
41 | 41 | |
42 | -if (!\function_exists('defineArrayType')) { |
|
42 | +if (!\function_exists('defineArrayType')){ |
|
43 | 43 | /** |
44 | 44 | * @internal |
45 | 45 | */ |
46 | 46 | function defineArrayType(array $array, string $failureType = null): ?string |
47 | 47 | { |
48 | - $types = \array_map(static fn ($value): string => \gettype($value), $array); |
|
48 | + $types = \array_map(static fn ($value) : string => \gettype($value), $array); |
|
49 | 49 | |
50 | 50 | $types = \array_unique($types); |
51 | 51 |
@@ -4,7 +4,8 @@ discard block |
||
4 | 4 | |
5 | 5 | namespace Spiral\Scaffolder; |
6 | 6 | |
7 | -if (!\function_exists('trimPostfix')) { |
|
7 | +if (!\function_exists('trimPostfix')) |
|
8 | +{ |
|
8 | 9 | /** |
9 | 10 | * @internal |
10 | 11 | */ |
@@ -16,19 +17,23 @@ discard block |
||
16 | 17 | } |
17 | 18 | } |
18 | 19 | |
19 | -if (!\function_exists('isAssociativeArray')) { |
|
20 | +if (!\function_exists('isAssociativeArray')) |
|
21 | +{ |
|
20 | 22 | /** |
21 | 23 | * @internal |
22 | 24 | */ |
23 | 25 | function isAssociativeArray(array $array): bool |
24 | 26 | { |
25 | 27 | $keys = []; |
26 | - foreach ($array as $key => $_) { |
|
27 | - if (!\is_int($key)) { |
|
28 | + foreach ($array as $key => $_) |
|
29 | + { |
|
30 | + if (!\is_int($key)) |
|
31 | + { |
|
28 | 32 | return true; |
29 | 33 | } |
30 | 34 | |
31 | - if ($key !== \count($keys)) { |
|
35 | + if ($key !== \count($keys)) |
|
36 | + { |
|
32 | 37 | return true; |
33 | 38 | } |
34 | 39 | |
@@ -39,7 +44,8 @@ discard block |
||
39 | 44 | } |
40 | 45 | } |
41 | 46 | |
42 | -if (!\function_exists('defineArrayType')) { |
|
47 | +if (!\function_exists('defineArrayType')) |
|
48 | +{ |
|
43 | 49 | /** |
44 | 50 | * @internal |
45 | 51 | */ |
@@ -43,8 +43,8 @@ |
||
43 | 43 | $declaration = $this->createDeclaration(ConfigDeclaration::class); |
44 | 44 | |
45 | 45 | $declaration->create( |
46 | - (bool) $this->option('reverse'), |
|
47 | - (string) $this->argument('name') |
|
46 | + (bool)$this->option('reverse'), |
|
47 | + (string)$this->argument('name') |
|
48 | 48 | ); |
49 | 49 | |
50 | 50 | $this->writeDeclaration($declaration); |