@@ -54,10 +54,10 @@ discard block |
||
54 | 54 | FilesInterface $files, |
55 | 55 | DirectoriesInterface $directories |
56 | 56 | ): void { |
57 | - switch ($this->argument('type')) { |
|
57 | + switch ($this->argument('type')){ |
|
58 | 58 | case 'replace': |
59 | 59 | case 'follow': |
60 | - if ($this->isDirectory()) { |
|
60 | + if ($this->isDirectory()){ |
|
61 | 61 | $this->sprintf( |
62 | 62 | '<fg=cyan>•</fg=cyan> publish directory <comment>%s</comment> to <comment>%s</comment>', |
63 | 63 | $this->getSource($files, $directories), |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $this->getMergeMode(), |
71 | 71 | $this->getFileMode() |
72 | 72 | ); |
73 | - } else { |
|
73 | + }else{ |
|
74 | 74 | $this->sprintf( |
75 | 75 | '<fg=cyan>•</fg=cyan> publish file <comment>%s</comment> to <comment>%s</comment>', |
76 | 76 | $this->getSource($files, $directories), |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | */ |
111 | 111 | private function getSource(FilesInterface $files, DirectoriesInterface $directories): ?string |
112 | 112 | { |
113 | - if (!$this->isDirectory()) { |
|
113 | + if (!$this->isDirectory()){ |
|
114 | 114 | return $files->normalizePath($this->argument('source')); |
115 | 115 | } |
116 | 116 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | private function getTarget(FilesInterface $files, DirectoriesInterface $directories): ?string |
126 | 126 | { |
127 | 127 | $target = $this->argument('target'); |
128 | - foreach ($directories->getAll() as $alias => $value) { |
|
128 | + foreach ($directories->getAll() as $alias => $value){ |
|
129 | 129 | $target = str_replace("@{$alias}", $value, $target); |
130 | 130 | } |
131 | 131 | |
@@ -137,11 +137,11 @@ discard block |
||
137 | 137 | */ |
138 | 138 | private function isDirectory(): bool |
139 | 139 | { |
140 | - if ($this->argument('type') == 'ensure') { |
|
140 | + if ($this->argument('type') == 'ensure'){ |
|
141 | 141 | return true; |
142 | 142 | } |
143 | 143 | |
144 | - if (strpos($this->argument('source'), '*') !== false) { |
|
144 | + if (strpos($this->argument('source'), '*') !== false){ |
|
145 | 145 | return true; |
146 | 146 | } |
147 | 147 | |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | */ |
154 | 154 | private function getMergeMode(): string |
155 | 155 | { |
156 | - switch ($this->argument('type')) { |
|
156 | + switch ($this->argument('type')){ |
|
157 | 157 | case 'follow': |
158 | 158 | return PublisherInterface::FOLLOW; |
159 | 159 | case 'replace': |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | */ |
169 | 169 | private function getFileMode(): int |
170 | 170 | { |
171 | - switch ($this->argument('mode')) { |
|
171 | + switch ($this->argument('mode')){ |
|
172 | 172 | case 'readonly': |
173 | 173 | return FilesInterface::READONLY; |
174 | 174 | case 'runtime': |
@@ -54,10 +54,12 @@ discard block |
||
54 | 54 | FilesInterface $files, |
55 | 55 | DirectoriesInterface $directories |
56 | 56 | ): void { |
57 | - switch ($this->argument('type')) { |
|
57 | + switch ($this->argument('type')) |
|
58 | + { |
|
58 | 59 | case 'replace': |
59 | 60 | case 'follow': |
60 | - if ($this->isDirectory()) { |
|
61 | + if ($this->isDirectory()) |
|
62 | + { |
|
61 | 63 | $this->sprintf( |
62 | 64 | '<fg=cyan>•</fg=cyan> publish directory <comment>%s</comment> to <comment>%s</comment>', |
63 | 65 | $this->getSource($files, $directories), |
@@ -70,7 +72,9 @@ discard block |
||
70 | 72 | $this->getMergeMode(), |
71 | 73 | $this->getFileMode() |
72 | 74 | ); |
73 | - } else { |
|
75 | + } |
|
76 | + else |
|
77 | + { |
|
74 | 78 | $this->sprintf( |
75 | 79 | '<fg=cyan>•</fg=cyan> publish file <comment>%s</comment> to <comment>%s</comment>', |
76 | 80 | $this->getSource($files, $directories), |
@@ -110,7 +114,8 @@ discard block |
||
110 | 114 | */ |
111 | 115 | private function getSource(FilesInterface $files, DirectoriesInterface $directories): ?string |
112 | 116 | { |
113 | - if (!$this->isDirectory()) { |
|
117 | + if (!$this->isDirectory()) |
|
118 | + { |
|
114 | 119 | return $files->normalizePath($this->argument('source')); |
115 | 120 | } |
116 | 121 | |
@@ -125,7 +130,8 @@ discard block |
||
125 | 130 | private function getTarget(FilesInterface $files, DirectoriesInterface $directories): ?string |
126 | 131 | { |
127 | 132 | $target = $this->argument('target'); |
128 | - foreach ($directories->getAll() as $alias => $value) { |
|
133 | + foreach ($directories->getAll() as $alias => $value) |
|
134 | + { |
|
129 | 135 | $target = str_replace("@{$alias}", $value, $target); |
130 | 136 | } |
131 | 137 | |
@@ -137,11 +143,13 @@ discard block |
||
137 | 143 | */ |
138 | 144 | private function isDirectory(): bool |
139 | 145 | { |
140 | - if ($this->argument('type') == 'ensure') { |
|
146 | + if ($this->argument('type') == 'ensure') |
|
147 | + { |
|
141 | 148 | return true; |
142 | 149 | } |
143 | 150 | |
144 | - if (strpos($this->argument('source'), '*') !== false) { |
|
151 | + if (strpos($this->argument('source'), '*') !== false) |
|
152 | + { |
|
145 | 153 | return true; |
146 | 154 | } |
147 | 155 | |
@@ -153,7 +161,8 @@ discard block |
||
153 | 161 | */ |
154 | 162 | private function getMergeMode(): string |
155 | 163 | { |
156 | - switch ($this->argument('type')) { |
|
164 | + switch ($this->argument('type')) |
|
165 | + { |
|
157 | 166 | case 'follow': |
158 | 167 | return PublisherInterface::FOLLOW; |
159 | 168 | case 'replace': |
@@ -168,7 +177,8 @@ discard block |
||
168 | 177 | */ |
169 | 178 | private function getFileMode(): int |
170 | 179 | { |
171 | - switch ($this->argument('mode')) { |
|
180 | + switch ($this->argument('mode')) |
|
181 | + { |
|
172 | 182 | case 'readonly': |
173 | 183 | return FilesInterface::READONLY; |
174 | 184 | case 'runtime': |
@@ -55,21 +55,21 @@ |
||
55 | 55 | $this->sprintf("<info>New encryption key:</info> <fg=cyan>%s</fg=cyan>\n", $key); |
56 | 56 | |
57 | 57 | $file = $this->option('mount'); |
58 | - if ($file === null) { |
|
58 | + if ($file === null){ |
|
59 | 59 | return; |
60 | 60 | } |
61 | 61 | |
62 | - if (!$files->exists($file)) { |
|
62 | + if (!$files->exists($file)){ |
|
63 | 63 | $this->sprintf('<error>Unable to find `%s`</error>', $file); |
64 | 64 | return; |
65 | 65 | } |
66 | 66 | |
67 | 67 | $content = $files->read($file); |
68 | 68 | |
69 | - try { |
|
69 | + try{ |
|
70 | 70 | $content = str_replace($this->option('placeholder'), $key, $content); |
71 | 71 | $content = str_replace($enc->getKey(), $key, $content); |
72 | - } catch (\Throwable $e) { |
|
72 | + }catch (\Throwable $e){ |
|
73 | 73 | // current keys is not set |
74 | 74 | } |
75 | 75 |
@@ -55,21 +55,26 @@ |
||
55 | 55 | $this->sprintf("<info>New encryption key:</info> <fg=cyan>%s</fg=cyan>\n", $key); |
56 | 56 | |
57 | 57 | $file = $this->option('mount'); |
58 | - if ($file === null) { |
|
58 | + if ($file === null) |
|
59 | + { |
|
59 | 60 | return; |
60 | 61 | } |
61 | 62 | |
62 | - if (!$files->exists($file)) { |
|
63 | + if (!$files->exists($file)) |
|
64 | + { |
|
63 | 65 | $this->sprintf('<error>Unable to find `%s`</error>', $file); |
64 | 66 | return; |
65 | 67 | } |
66 | 68 | |
67 | 69 | $content = $files->read($file); |
68 | 70 | |
69 | - try { |
|
71 | + try |
|
72 | + { |
|
70 | 73 | $content = str_replace($this->option('placeholder'), $key, $content); |
71 | 74 | $content = str_replace($enc->getKey(), $key, $content); |
72 | - } catch (\Throwable $e) { |
|
75 | + } |
|
76 | + catch (\Throwable $e) |
|
77 | + { |
|
73 | 78 | // current keys is not set |
74 | 79 | } |
75 | 80 |
@@ -26,20 +26,20 @@ discard block |
||
26 | 26 | public function perform(FilesInterface $files, DirectoriesInterface $directories): void |
27 | 27 | { |
28 | 28 | $cacheDirectory = $directories->get('cache'); |
29 | - if (!$files->exists($cacheDirectory)) { |
|
29 | + if (!$files->exists($cacheDirectory)){ |
|
30 | 30 | $this->writeln('Cache directory is missing, no cache to be cleaned.'); |
31 | 31 | |
32 | 32 | return; |
33 | 33 | } |
34 | 34 | |
35 | - if ($this->isVerbose()) { |
|
35 | + if ($this->isVerbose()){ |
|
36 | 36 | $this->writeln('<info>Cleaning application cache:</info>'); |
37 | 37 | } |
38 | 38 | |
39 | - foreach ($files->getFiles($cacheDirectory) as $filename) { |
|
40 | - try { |
|
39 | + foreach ($files->getFiles($cacheDirectory) as $filename){ |
|
40 | + try{ |
|
41 | 41 | $files->delete($filename); |
42 | - } catch (\Throwable $e) { |
|
42 | + }catch (\Throwable $e){ |
|
43 | 43 | // @codeCoverageIgnoreStart |
44 | 44 | $this->sprintf( |
45 | 45 | "<fg=red>[errored]</fg=red> `%s`: <fg=red>%s</fg=red>\n", |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | // @codeCoverageIgnoreEnd |
52 | 52 | } |
53 | 53 | |
54 | - if ($this->isVerbose()) { |
|
54 | + if ($this->isVerbose()){ |
|
55 | 55 | $this->sprintf( |
56 | 56 | "<fg=green>[deleted]</fg=green> `%s`\n", |
57 | 57 | $files->relativePath($filename, $cacheDirectory) |
@@ -26,20 +26,26 @@ discard block |
||
26 | 26 | public function perform(FilesInterface $files, DirectoriesInterface $directories): void |
27 | 27 | { |
28 | 28 | $cacheDirectory = $directories->get('cache'); |
29 | - if (!$files->exists($cacheDirectory)) { |
|
29 | + if (!$files->exists($cacheDirectory)) |
|
30 | + { |
|
30 | 31 | $this->writeln('Cache directory is missing, no cache to be cleaned.'); |
31 | 32 | |
32 | 33 | return; |
33 | 34 | } |
34 | 35 | |
35 | - if ($this->isVerbose()) { |
|
36 | + if ($this->isVerbose()) |
|
37 | + { |
|
36 | 38 | $this->writeln('<info>Cleaning application cache:</info>'); |
37 | 39 | } |
38 | 40 | |
39 | - foreach ($files->getFiles($cacheDirectory) as $filename) { |
|
40 | - try { |
|
41 | + foreach ($files->getFiles($cacheDirectory) as $filename) |
|
42 | + { |
|
43 | + try |
|
44 | + { |
|
41 | 45 | $files->delete($filename); |
42 | - } catch (\Throwable $e) { |
|
46 | + } |
|
47 | + catch (\Throwable $e) |
|
48 | + { |
|
43 | 49 | // @codeCoverageIgnoreStart |
44 | 50 | $this->sprintf( |
45 | 51 | "<fg=red>[errored]</fg=red> `%s`: <fg=red>%s</fg=red>\n", |
@@ -51,7 +57,8 @@ discard block |
||
51 | 57 | // @codeCoverageIgnoreEnd |
52 | 58 | } |
53 | 59 | |
54 | - if ($this->isVerbose()) { |
|
60 | + if ($this->isVerbose()) |
|
61 | + { |
|
55 | 62 | $this->sprintf( |
56 | 63 | "<fg=green>[deleted]</fg=green> `%s`\n", |
57 | 64 | $files->relativePath($filename, $cacheDirectory) |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | { |
27 | 27 | $services = $locator->getServices(); |
28 | 28 | |
29 | - if ($services === []) { |
|
29 | + if ($services === []){ |
|
30 | 30 | $this->writeln('<comment>No GRPC services were found.</comment>'); |
31 | 31 | return; |
32 | 32 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | ] |
40 | 40 | ); |
41 | 41 | |
42 | - foreach ($services as $interface => $instance) { |
|
42 | + foreach ($services as $interface => $instance){ |
|
43 | 43 | $grid->addRow( |
44 | 44 | [ |
45 | 45 | $interface::NAME, |
@@ -26,7 +26,8 @@ discard block |
||
26 | 26 | { |
27 | 27 | $services = $locator->getServices(); |
28 | 28 | |
29 | - if ($services === []) { |
|
29 | + if ($services === []) |
|
30 | + { |
|
30 | 31 | $this->writeln('<comment>No GRPC services were found.</comment>'); |
31 | 32 | return; |
32 | 33 | } |
@@ -39,7 +40,8 @@ discard block |
||
39 | 40 | ] |
40 | 41 | ); |
41 | 42 | |
42 | - foreach ($services as $interface => $instance) { |
|
43 | + foreach ($services as $interface => $instance) |
|
44 | + { |
|
43 | 45 | $grid->addRow( |
44 | 46 | [ |
45 | 47 | $interface::NAME, |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | public function perform(KernelInterface $kernel, FilesInterface $files, DirectoriesInterface $dirs): void |
38 | 38 | { |
39 | 39 | $protoFile = $this->argument('proto'); |
40 | - if (!file_exists($protoFile)) { |
|
40 | + if (!file_exists($protoFile)){ |
|
41 | 41 | $this->sprintf('<error>File `%s` not found.</error>', $protoFile); |
42 | 42 | return; |
43 | 43 | } |
@@ -50,19 +50,19 @@ discard block |
||
50 | 50 | |
51 | 51 | $this->sprintf("<info>Compiling <fg=cyan>`%s`</fg=cyan>:</info>\n", $protoFile); |
52 | 52 | |
53 | - try { |
|
53 | + try{ |
|
54 | 54 | $result = $compiler->compile($protoFile); |
55 | - } catch (\Throwable $e) { |
|
55 | + }catch (\Throwable $e){ |
|
56 | 56 | $this->sprintf("<error>Error:</error> <fg=red>%s</fg=red>\n", $e->getMessage()); |
57 | 57 | return; |
58 | 58 | } |
59 | 59 | |
60 | - if ($result === []) { |
|
60 | + if ($result === []){ |
|
61 | 61 | $this->sprintf("<info>No files were generated.</info>\n", $protoFile); |
62 | 62 | return; |
63 | 63 | } |
64 | 64 | |
65 | - foreach ($result as $file) { |
|
65 | + foreach ($result as $file){ |
|
66 | 66 | $this->sprintf( |
67 | 67 | "<fg=green>•</fg=green> %s%s%s\n", |
68 | 68 | Color::LIGHT_WHITE, |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | protected function getPath(KernelInterface $kernel): string |
82 | 82 | { |
83 | 83 | $path = $this->argument('path'); |
84 | - if ($path !== 'auto') { |
|
84 | + if ($path !== 'auto'){ |
|
85 | 85 | return $path; |
86 | 86 | } |
87 | 87 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | protected function getNamespace(KernelInterface $kernel): string |
100 | 100 | { |
101 | 101 | $namespace = $this->argument('namespace'); |
102 | - if ($namespace !== 'auto') { |
|
102 | + if ($namespace !== 'auto'){ |
|
103 | 103 | return $namespace; |
104 | 104 | } |
105 | 105 |
@@ -37,7 +37,8 @@ discard block |
||
37 | 37 | public function perform(KernelInterface $kernel, FilesInterface $files, DirectoriesInterface $dirs): void |
38 | 38 | { |
39 | 39 | $protoFile = $this->argument('proto'); |
40 | - if (!file_exists($protoFile)) { |
|
40 | + if (!file_exists($protoFile)) |
|
41 | + { |
|
41 | 42 | $this->sprintf('<error>File `%s` not found.</error>', $protoFile); |
42 | 43 | return; |
43 | 44 | } |
@@ -50,19 +51,24 @@ discard block |
||
50 | 51 | |
51 | 52 | $this->sprintf("<info>Compiling <fg=cyan>`%s`</fg=cyan>:</info>\n", $protoFile); |
52 | 53 | |
53 | - try { |
|
54 | + try |
|
55 | + { |
|
54 | 56 | $result = $compiler->compile($protoFile); |
55 | - } catch (\Throwable $e) { |
|
57 | + } |
|
58 | + catch (\Throwable $e) |
|
59 | + { |
|
56 | 60 | $this->sprintf("<error>Error:</error> <fg=red>%s</fg=red>\n", $e->getMessage()); |
57 | 61 | return; |
58 | 62 | } |
59 | 63 | |
60 | - if ($result === []) { |
|
64 | + if ($result === []) |
|
65 | + { |
|
61 | 66 | $this->sprintf("<info>No files were generated.</info>\n", $protoFile); |
62 | 67 | return; |
63 | 68 | } |
64 | 69 | |
65 | - foreach ($result as $file) { |
|
70 | + foreach ($result as $file) |
|
71 | + { |
|
66 | 72 | $this->sprintf( |
67 | 73 | "<fg=green>•</fg=green> %s%s%s\n", |
68 | 74 | Color::LIGHT_WHITE, |
@@ -81,7 +87,8 @@ discard block |
||
81 | 87 | protected function getPath(KernelInterface $kernel): string |
82 | 88 | { |
83 | 89 | $path = $this->argument('path'); |
84 | - if ($path !== 'auto') { |
|
90 | + if ($path !== 'auto') |
|
91 | + { |
|
85 | 92 | return $path; |
86 | 93 | } |
87 | 94 | |
@@ -99,7 +106,8 @@ discard block |
||
99 | 106 | protected function getNamespace(KernelInterface $kernel): string |
100 | 107 | { |
101 | 108 | $namespace = $this->argument('namespace'); |
102 | - if ($namespace !== 'auto') { |
|
109 | + if ($namespace !== 'auto') |
|
110 | + { |
|
103 | 111 | return $namespace; |
104 | 112 | } |
105 | 113 |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | use Spiral\Core\Container\Autowire; |
13 | 13 | use Spiral\Debug\Dumper; |
14 | 14 | |
15 | -if (!function_exists('bind')) { |
|
15 | +if (!function_exists('bind')){ |
|
16 | 16 | /** |
17 | 17 | * Shortcut to container Autowire definition. |
18 | 18 | * |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | } |
31 | 31 | } |
32 | 32 | |
33 | -if (!function_exists('dumprr')) { |
|
33 | +if (!function_exists('dumprr')){ |
|
34 | 34 | /** |
35 | 35 | * Dumprr is similar to Dump function but always redirect output to STDERR. |
36 | 36 | * |
@@ -12,7 +12,8 @@ discard block |
||
12 | 12 | use Spiral\Core\Container\Autowire; |
13 | 13 | use Spiral\Debug\Dumper; |
14 | 14 | |
15 | -if (!function_exists('bind')) { |
|
15 | +if (!function_exists('bind')) |
|
16 | +{ |
|
16 | 17 | /** |
17 | 18 | * Shortcut to container Autowire definition. |
18 | 19 | * |
@@ -30,7 +31,8 @@ discard block |
||
30 | 31 | } |
31 | 32 | } |
32 | 33 | |
33 | -if (!function_exists('dumprr')) { |
|
34 | +if (!function_exists('dumprr')) |
|
35 | +{ |
|
34 | 36 | /** |
35 | 37 | * Dumprr is similar to Dump function but always redirect output to STDERR. |
36 | 38 | * |
@@ -46,17 +46,17 @@ discard block |
||
46 | 46 | $entities = $this->getDeclaredEntities($controller, $action); |
47 | 47 | |
48 | 48 | $contextCandidates = []; |
49 | - foreach ($entities as $parameter => $role) { |
|
49 | + foreach ($entities as $parameter => $role){ |
|
50 | 50 | $value = $this->getParameter($parameter, $parameters, count($entities) === 1); |
51 | - if ($value === null) { |
|
51 | + if ($value === null){ |
|
52 | 52 | throw new ControllerException( |
53 | 53 | "Entity `{$parameter}` can not be found", |
54 | 54 | ControllerException::NOT_FOUND |
55 | 55 | ); |
56 | 56 | } |
57 | 57 | |
58 | - if (is_object($value)) { |
|
59 | - if ($this->orm->getHeap()->has($value)) { |
|
58 | + if (is_object($value)){ |
|
59 | + if ($this->orm->getHeap()->has($value)){ |
|
60 | 60 | $contextCandidates[] = $value; |
61 | 61 | } |
62 | 62 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | |
67 | 67 | $entity = $this->resolveEntity($role, $value); |
68 | - if ($entity === null) { |
|
68 | + if ($entity === null){ |
|
69 | 69 | throw new ControllerException( |
70 | 70 | "Entity `{$parameter}` can not be found", |
71 | 71 | ControllerException::NOT_FOUND |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | $contextCandidates[] = $entity; |
77 | 77 | } |
78 | 78 | |
79 | - if (!isset($parameters['@context']) && count($contextCandidates) === 1) { |
|
79 | + if (!isset($parameters['@context']) && count($contextCandidates) === 1){ |
|
80 | 80 | $parameters['@context'] = current($contextCandidates); |
81 | 81 | } |
82 | 82 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | */ |
92 | 92 | protected function getParameter(string $role, array $parameters, bool $useDefault = false) |
93 | 93 | { |
94 | - if (!$useDefault) { |
|
94 | + if (!$useDefault){ |
|
95 | 95 | return $parameters[$role] ?? null; |
96 | 96 | } |
97 | 97 | |
@@ -116,23 +116,23 @@ discard block |
||
116 | 116 | private function getDeclaredEntities(string $controller, string $action): array |
117 | 117 | { |
118 | 118 | $key = sprintf('%s:%s', $controller, $action); |
119 | - if (array_key_exists($key, $this->cache)) { |
|
119 | + if (array_key_exists($key, $this->cache)){ |
|
120 | 120 | return $this->cache[$key]; |
121 | 121 | } |
122 | 122 | |
123 | 123 | $this->cache[$key] = []; |
124 | - try { |
|
124 | + try{ |
|
125 | 125 | $method = new \ReflectionMethod($controller, $action); |
126 | - } catch (\ReflectionException $e) { |
|
126 | + }catch (\ReflectionException $e){ |
|
127 | 127 | return []; |
128 | 128 | } |
129 | 129 | |
130 | - foreach ($method->getParameters() as $parameter) { |
|
131 | - if ($parameter->getClass() === null) { |
|
130 | + foreach ($method->getParameters() as $parameter){ |
|
131 | + if ($parameter->getClass() === null){ |
|
132 | 132 | continue; |
133 | 133 | } |
134 | 134 | |
135 | - if ($this->orm->getSchema()->defines($parameter->getClass()->getName())) { |
|
135 | + if ($this->orm->getSchema()->defines($parameter->getClass()->getName())){ |
|
136 | 136 | $this->cache[$key][$parameter->getName()] = $this->orm->resolveRole($parameter->getClass()->getName()); |
137 | 137 | } |
138 | 138 | } |
@@ -46,17 +46,21 @@ discard block |
||
46 | 46 | $entities = $this->getDeclaredEntities($controller, $action); |
47 | 47 | |
48 | 48 | $contextCandidates = []; |
49 | - foreach ($entities as $parameter => $role) { |
|
49 | + foreach ($entities as $parameter => $role) |
|
50 | + { |
|
50 | 51 | $value = $this->getParameter($parameter, $parameters, count($entities) === 1); |
51 | - if ($value === null) { |
|
52 | + if ($value === null) |
|
53 | + { |
|
52 | 54 | throw new ControllerException( |
53 | 55 | "Entity `{$parameter}` can not be found", |
54 | 56 | ControllerException::NOT_FOUND |
55 | 57 | ); |
56 | 58 | } |
57 | 59 | |
58 | - if (is_object($value)) { |
|
59 | - if ($this->orm->getHeap()->has($value)) { |
|
60 | + if (is_object($value)) |
|
61 | + { |
|
62 | + if ($this->orm->getHeap()->has($value)) |
|
63 | + { |
|
60 | 64 | $contextCandidates[] = $value; |
61 | 65 | } |
62 | 66 | |
@@ -65,7 +69,8 @@ discard block |
||
65 | 69 | } |
66 | 70 | |
67 | 71 | $entity = $this->resolveEntity($role, $value); |
68 | - if ($entity === null) { |
|
72 | + if ($entity === null) |
|
73 | + { |
|
69 | 74 | throw new ControllerException( |
70 | 75 | "Entity `{$parameter}` can not be found", |
71 | 76 | ControllerException::NOT_FOUND |
@@ -76,7 +81,8 @@ discard block |
||
76 | 81 | $contextCandidates[] = $entity; |
77 | 82 | } |
78 | 83 | |
79 | - if (!isset($parameters['@context']) && count($contextCandidates) === 1) { |
|
84 | + if (!isset($parameters['@context']) && count($contextCandidates) === 1) |
|
85 | + { |
|
80 | 86 | $parameters['@context'] = current($contextCandidates); |
81 | 87 | } |
82 | 88 | |
@@ -91,7 +97,8 @@ discard block |
||
91 | 97 | */ |
92 | 98 | protected function getParameter(string $role, array $parameters, bool $useDefault = false) |
93 | 99 | { |
94 | - if (!$useDefault) { |
|
100 | + if (!$useDefault) |
|
101 | + { |
|
95 | 102 | return $parameters[$role] ?? null; |
96 | 103 | } |
97 | 104 | |
@@ -116,23 +123,30 @@ discard block |
||
116 | 123 | private function getDeclaredEntities(string $controller, string $action): array |
117 | 124 | { |
118 | 125 | $key = sprintf('%s:%s', $controller, $action); |
119 | - if (array_key_exists($key, $this->cache)) { |
|
126 | + if (array_key_exists($key, $this->cache)) |
|
127 | + { |
|
120 | 128 | return $this->cache[$key]; |
121 | 129 | } |
122 | 130 | |
123 | 131 | $this->cache[$key] = []; |
124 | - try { |
|
132 | + try |
|
133 | + { |
|
125 | 134 | $method = new \ReflectionMethod($controller, $action); |
126 | - } catch (\ReflectionException $e) { |
|
135 | + } |
|
136 | + catch (\ReflectionException $e) |
|
137 | + { |
|
127 | 138 | return []; |
128 | 139 | } |
129 | 140 | |
130 | - foreach ($method->getParameters() as $parameter) { |
|
131 | - if ($parameter->getClass() === null) { |
|
141 | + foreach ($method->getParameters() as $parameter) |
|
142 | + { |
|
143 | + if ($parameter->getClass() === null) |
|
144 | + { |
|
132 | 145 | continue; |
133 | 146 | } |
134 | 147 | |
135 | - if ($this->orm->getSchema()->defines($parameter->getClass()->getName())) { |
|
148 | + if ($this->orm->getSchema()->defines($parameter->getClass()->getName())) |
|
149 | + { |
|
136 | 150 | $this->cache[$key][$parameter->getName()] = $this->orm->resolveRole($parameter->getClass()->getName()); |
137 | 151 | } |
138 | 152 | } |
@@ -49,20 +49,20 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function process(string $controller, string $action, array $parameters, CoreInterface $core) |
51 | 51 | { |
52 | - foreach ($this->getDeclaredFilters($controller, $action) as $parameter => $filterClass) { |
|
53 | - if (isset($parameters[$parameter])) { |
|
52 | + foreach ($this->getDeclaredFilters($controller, $action) as $parameter => $filterClass){ |
|
53 | + if (isset($parameters[$parameter])){ |
|
54 | 54 | continue; |
55 | 55 | } |
56 | 56 | |
57 | 57 | /** @var FilterInterface $filter */ |
58 | 58 | $filter = $this->container->get($filterClass); |
59 | 59 | |
60 | - if (isset($parameters['@context'])) { |
|
60 | + if (isset($parameters['@context'])){ |
|
61 | 61 | // other interceptors can define the validation contex |
62 | 62 | $filter->setContext($parameters['@context']); |
63 | 63 | } |
64 | 64 | |
65 | - if (!$filter->isValid()) { |
|
65 | + if (!$filter->isValid()){ |
|
66 | 66 | return $this->renderInvalid($filter); |
67 | 67 | } |
68 | 68 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | protected function renderInvalid(FilterInterface $filter) |
82 | 82 | { |
83 | - switch ($this->strategy) { |
|
83 | + switch ($this->strategy){ |
|
84 | 84 | case self::STRATEGY_JSON_RESPONSE: |
85 | 85 | return [ |
86 | 86 | 'status' => 400, |
@@ -99,23 +99,23 @@ discard block |
||
99 | 99 | private function getDeclaredFilters(string $controller, string $action): array |
100 | 100 | { |
101 | 101 | $key = sprintf('%s:%s', $controller, $action); |
102 | - if (array_key_exists($key, $this->cache)) { |
|
102 | + if (array_key_exists($key, $this->cache)){ |
|
103 | 103 | return $this->cache[$key]; |
104 | 104 | } |
105 | 105 | |
106 | 106 | $this->cache[$key] = []; |
107 | - try { |
|
107 | + try{ |
|
108 | 108 | $method = new \ReflectionMethod($controller, $action); |
109 | - } catch (\ReflectionException $e) { |
|
109 | + }catch (\ReflectionException $e){ |
|
110 | 110 | return []; |
111 | 111 | } |
112 | 112 | |
113 | - foreach ($method->getParameters() as $parameter) { |
|
114 | - if ($parameter->getClass() === null) { |
|
113 | + foreach ($method->getParameters() as $parameter){ |
|
114 | + if ($parameter->getClass() === null){ |
|
115 | 115 | continue; |
116 | 116 | } |
117 | 117 | |
118 | - if ($parameter->getClass()->implementsInterface(FilterInterface::class)) { |
|
118 | + if ($parameter->getClass()->implementsInterface(FilterInterface::class)){ |
|
119 | 119 | $this->cache[$key][$parameter->getName()] = $parameter->getClass()->getName(); |
120 | 120 | } |
121 | 121 | } |
@@ -49,20 +49,24 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function process(string $controller, string $action, array $parameters, CoreInterface $core) |
51 | 51 | { |
52 | - foreach ($this->getDeclaredFilters($controller, $action) as $parameter => $filterClass) { |
|
53 | - if (isset($parameters[$parameter])) { |
|
52 | + foreach ($this->getDeclaredFilters($controller, $action) as $parameter => $filterClass) |
|
53 | + { |
|
54 | + if (isset($parameters[$parameter])) |
|
55 | + { |
|
54 | 56 | continue; |
55 | 57 | } |
56 | 58 | |
57 | 59 | /** @var FilterInterface $filter */ |
58 | 60 | $filter = $this->container->get($filterClass); |
59 | 61 | |
60 | - if (isset($parameters['@context'])) { |
|
62 | + if (isset($parameters['@context'])) |
|
63 | + { |
|
61 | 64 | // other interceptors can define the validation contex |
62 | 65 | $filter->setContext($parameters['@context']); |
63 | 66 | } |
64 | 67 | |
65 | - if (!$filter->isValid()) { |
|
68 | + if (!$filter->isValid()) |
|
69 | + { |
|
66 | 70 | return $this->renderInvalid($filter); |
67 | 71 | } |
68 | 72 | |
@@ -80,7 +84,8 @@ discard block |
||
80 | 84 | */ |
81 | 85 | protected function renderInvalid(FilterInterface $filter) |
82 | 86 | { |
83 | - switch ($this->strategy) { |
|
87 | + switch ($this->strategy) |
|
88 | + { |
|
84 | 89 | case self::STRATEGY_JSON_RESPONSE: |
85 | 90 | return [ |
86 | 91 | 'status' => 400, |
@@ -99,23 +104,30 @@ discard block |
||
99 | 104 | private function getDeclaredFilters(string $controller, string $action): array |
100 | 105 | { |
101 | 106 | $key = sprintf('%s:%s', $controller, $action); |
102 | - if (array_key_exists($key, $this->cache)) { |
|
107 | + if (array_key_exists($key, $this->cache)) |
|
108 | + { |
|
103 | 109 | return $this->cache[$key]; |
104 | 110 | } |
105 | 111 | |
106 | 112 | $this->cache[$key] = []; |
107 | - try { |
|
113 | + try |
|
114 | + { |
|
108 | 115 | $method = new \ReflectionMethod($controller, $action); |
109 | - } catch (\ReflectionException $e) { |
|
116 | + } |
|
117 | + catch (\ReflectionException $e) |
|
118 | + { |
|
110 | 119 | return []; |
111 | 120 | } |
112 | 121 | |
113 | - foreach ($method->getParameters() as $parameter) { |
|
114 | - if ($parameter->getClass() === null) { |
|
122 | + foreach ($method->getParameters() as $parameter) |
|
123 | + { |
|
124 | + if ($parameter->getClass() === null) |
|
125 | + { |
|
115 | 126 | continue; |
116 | 127 | } |
117 | 128 | |
118 | - if ($parameter->getClass()->implementsInterface(FilterInterface::class)) { |
|
129 | + if ($parameter->getClass()->implementsInterface(FilterInterface::class)) |
|
130 | + { |
|
119 | 131 | $this->cache[$key][$parameter->getName()] = $parameter->getClass()->getName(); |
120 | 132 | } |
121 | 133 | } |
@@ -38,15 +38,15 @@ |
||
38 | 38 | public function getServices(): array |
39 | 39 | { |
40 | 40 | $result = []; |
41 | - foreach ($this->classes->getClasses(ServiceInterface::class) as $service) { |
|
42 | - if (!$service->isInstantiable()) { |
|
41 | + foreach ($this->classes->getClasses(ServiceInterface::class) as $service){ |
|
42 | + if (!$service->isInstantiable()){ |
|
43 | 43 | continue; |
44 | 44 | } |
45 | 45 | |
46 | 46 | $instance = $this->container->get($service->getName()); |
47 | 47 | |
48 | - foreach ($service->getInterfaces() as $interface) { |
|
49 | - if ($interface->isSubclassOf(ServiceInterface::class)) { |
|
48 | + foreach ($service->getInterfaces() as $interface){ |
|
49 | + if ($interface->isSubclassOf(ServiceInterface::class)){ |
|
50 | 50 | $result[$interface->getName()] = $instance; |
51 | 51 | } |
52 | 52 | } |
@@ -38,15 +38,19 @@ |
||
38 | 38 | public function getServices(): array |
39 | 39 | { |
40 | 40 | $result = []; |
41 | - foreach ($this->classes->getClasses(ServiceInterface::class) as $service) { |
|
42 | - if (!$service->isInstantiable()) { |
|
41 | + foreach ($this->classes->getClasses(ServiceInterface::class) as $service) |
|
42 | + { |
|
43 | + if (!$service->isInstantiable()) |
|
44 | + { |
|
43 | 45 | continue; |
44 | 46 | } |
45 | 47 | |
46 | 48 | $instance = $this->container->get($service->getName()); |
47 | 49 | |
48 | - foreach ($service->getInterfaces() as $interface) { |
|
49 | - if ($interface->isSubclassOf(ServiceInterface::class)) { |
|
50 | + foreach ($service->getInterfaces() as $interface) |
|
51 | + { |
|
52 | + if ($interface->isSubclassOf(ServiceInterface::class)) |
|
53 | + { |
|
50 | 54 | $result[$interface->getName()] = $instance; |
51 | 55 | } |
52 | 56 | } |