@@ -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 | } |
@@ -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 | } |
@@ -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 $namespace = null): string |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | return $this->joinPathChunks([ |
67 | 67 | $this->baseDirectory(), |
68 | 68 | \str_replace('\\', '/', $elementNamespace), |
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 | } |
@@ -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); |
@@ -51,7 +51,8 @@ |
||
51 | 51 | $filename = $this->files->normalizePath($filename); |
52 | 52 | $className = $declaration->getClass()->getName(); |
53 | 53 | |
54 | - if ($this->files->exists($filename)) { |
|
54 | + if ($this->files->exists($filename)) |
|
55 | + { |
|
55 | 56 | $this->writeln( |
56 | 57 | \sprintf("<fg=red>Unable to create '<comment>%s</comment>' declaration, ", $className) |
57 | 58 | . \sprintf("file '<comment>%s</comment>' already exists.</fg=red>", $filename) |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | protected FilesInterface $files, |
20 | 20 | ContainerInterface $container, |
21 | 21 | private readonly FactoryInterface $factory |
22 | - ) { |
|
22 | + ){ |
|
23 | 23 | $this->setContainer($container); |
24 | 24 | |
25 | 25 | parent::__construct(); |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | return $this->factory->make( |
37 | 37 | $class, |
38 | 38 | [ |
39 | - 'name' => (string) $this->argument('name'), |
|
39 | + 'name' => (string)$this->argument('name'), |
|
40 | 40 | 'comment' => $this->option('comment'), |
41 | 41 | 'namespace' => $this->option('namespace'), |
42 | 42 | ] + $this->config->declarationOptions($class::TYPE) |
@@ -50,13 +50,13 @@ discard block |
||
50 | 50 | { |
51 | 51 | $filename = $this->config->classFilename( |
52 | 52 | $declaration::TYPE, |
53 | - (string) $this->argument('name'), |
|
53 | + (string)$this->argument('name'), |
|
54 | 54 | $this->option('namespace') |
55 | 55 | ); |
56 | 56 | $filename = $this->files->normalizePath($filename); |
57 | 57 | $className = $declaration->getClass()->getName(); |
58 | 58 | |
59 | - if ($this->files->exists($filename)) { |
|
59 | + if ($this->files->exists($filename)){ |
|
60 | 60 | $this->writeln( |
61 | 61 | \sprintf("<fg=red>Unable to create '<comment>%s</comment>' declaration, ", $className) |
62 | 62 | . \sprintf("file '<comment>%s</comment>' already exists.</fg=red>", $filename) |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | ['name', InputArgument::REQUIRED, 'Command name'], |
17 | 17 | ['alias', InputArgument::OPTIONAL, 'Command id/alias'], |
18 | 18 | ]; |
19 | - protected const OPTIONS = [ |
|
19 | + protected const OPTIONS = [ |
|
20 | 20 | [ |
21 | 21 | 'description', |
22 | 22 | 'd', |
@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | { |
39 | 39 | $declaration = $this->createDeclaration(CommandDeclaration::class); |
40 | 40 | |
41 | - $declaration->setAlias((string) ($this->argument('alias') ?? $this->argument('name'))); |
|
42 | - $declaration->setDescription((string) $this->option('description')); |
|
41 | + $declaration->setAlias((string)($this->argument('alias') ?? $this->argument('name'))); |
|
42 | + $declaration->setDescription((string)$this->option('description')); |
|
43 | 43 | |
44 | 44 | $this->writeDeclaration($declaration); |
45 | 45 |
@@ -43,11 +43,11 @@ |
||
43 | 43 | { |
44 | 44 | $declaration = $this->createDeclaration(ControllerDeclaration::class); |
45 | 45 | |
46 | - foreach ($this->option('action') as $action) { |
|
46 | + foreach ($this->option('action') as $action){ |
|
47 | 47 | $declaration->addAction($action); |
48 | 48 | } |
49 | 49 | |
50 | - if ((bool)$this->option('prototype')) { |
|
50 | + if ((bool)$this->option('prototype')){ |
|
51 | 51 | $declaration->addPrototypeTrait(); |
52 | 52 | } |
53 | 53 |
@@ -43,11 +43,13 @@ |
||
43 | 43 | { |
44 | 44 | $declaration = $this->createDeclaration(ControllerDeclaration::class); |
45 | 45 | |
46 | - foreach ($this->option('action') as $action) { |
|
46 | + foreach ($this->option('action') as $action) |
|
47 | + { |
|
47 | 48 | $declaration->addAction($action); |
48 | 49 | } |
49 | 50 | |
50 | - if ((bool)$this->option('prototype')) { |
|
51 | + if ((bool)$this->option('prototype')) |
|
52 | + { |
|
51 | 53 | $declaration->addPrototypeTrait(); |
52 | 54 | } |
53 | 55 |