@@ -84,8 +84,8 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public function has(string $name): bool |
86 | 86 | { |
87 | - foreach ($this->elements as $element) { |
|
88 | - if ($element instanceof NamedInterface && $element->getName() === $name) { |
|
87 | + foreach ($this->elements as $element){ |
|
88 | + if ($element instanceof NamedInterface && $element->getName() === $name){ |
|
89 | 89 | return true; |
90 | 90 | } |
91 | 91 | } |
@@ -105,14 +105,14 @@ discard block |
||
105 | 105 | $reflector = new ReflectionObject($element); |
106 | 106 | |
107 | 107 | $allowed = false; |
108 | - foreach ($this->allowed as $class) { |
|
109 | - if ($reflector->isSubclassOf($class) || get_class($element) === $class) { |
|
108 | + foreach ($this->allowed as $class){ |
|
109 | + if ($reflector->isSubclassOf($class) || get_class($element) === $class){ |
|
110 | 110 | $allowed = true; |
111 | 111 | break; |
112 | 112 | } |
113 | 113 | } |
114 | 114 | |
115 | - if (!$allowed) { |
|
115 | + if (!$allowed){ |
|
116 | 116 | $type = get_class($element); |
117 | 117 | throw new ReactorException("Elements with type '{$type}' are not allowed"); |
118 | 118 | } |
@@ -142,8 +142,8 @@ discard block |
||
142 | 142 | */ |
143 | 143 | public function remove(string $name): Aggregator |
144 | 144 | { |
145 | - foreach ($this->elements as $index => $element) { |
|
146 | - if ($element instanceof NamedInterface && $element->getName() === $name) { |
|
145 | + foreach ($this->elements as $index => $element){ |
|
146 | + if ($element instanceof NamedInterface && $element->getName() === $name){ |
|
147 | 147 | unset($this->elements[$index]); |
148 | 148 | } |
149 | 149 | } |
@@ -197,8 +197,8 @@ discard block |
||
197 | 197 | */ |
198 | 198 | public function replace($search, $replace): Aggregator |
199 | 199 | { |
200 | - foreach ($this->elements as $element) { |
|
201 | - if ($element instanceof ReplaceableInterface) { |
|
200 | + foreach ($this->elements as $element){ |
|
201 | + if ($element instanceof ReplaceableInterface){ |
|
202 | 202 | $element->replace($search, $replace); |
203 | 203 | } |
204 | 204 | } |
@@ -213,8 +213,8 @@ discard block |
||
213 | 213 | { |
214 | 214 | $result = ''; |
215 | 215 | |
216 | - foreach ($this->elements as $element) { |
|
217 | - $result .= $element->render($indentLevel) . "\n\n"; |
|
216 | + foreach ($this->elements as $element){ |
|
217 | + $result .= $element->render($indentLevel)."\n\n"; |
|
218 | 218 | } |
219 | 219 | |
220 | 220 | return rtrim($result, "\n"); |
@@ -229,8 +229,8 @@ discard block |
||
229 | 229 | */ |
230 | 230 | protected function find(string $name): DeclarationInterface |
231 | 231 | { |
232 | - foreach ($this->elements as $element) { |
|
233 | - if ($element instanceof NamedInterface && $element->getName() === $name) { |
|
232 | + foreach ($this->elements as $element){ |
|
233 | + if ($element instanceof NamedInterface && $element->getName() === $name){ |
|
234 | 234 | return $element; |
235 | 235 | } |
236 | 236 | } |
@@ -84,8 +84,10 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public function has(string $name): bool |
86 | 86 | { |
87 | - foreach ($this->elements as $element) { |
|
88 | - if ($element instanceof NamedInterface && $element->getName() === $name) { |
|
87 | + foreach ($this->elements as $element) |
|
88 | + { |
|
89 | + if ($element instanceof NamedInterface && $element->getName() === $name) |
|
90 | + { |
|
89 | 91 | return true; |
90 | 92 | } |
91 | 93 | } |
@@ -105,14 +107,17 @@ discard block |
||
105 | 107 | $reflector = new ReflectionObject($element); |
106 | 108 | |
107 | 109 | $allowed = false; |
108 | - foreach ($this->allowed as $class) { |
|
109 | - if ($reflector->isSubclassOf($class) || get_class($element) === $class) { |
|
110 | + foreach ($this->allowed as $class) |
|
111 | + { |
|
112 | + if ($reflector->isSubclassOf($class) || get_class($element) === $class) |
|
113 | + { |
|
110 | 114 | $allowed = true; |
111 | 115 | break; |
112 | 116 | } |
113 | 117 | } |
114 | 118 | |
115 | - if (!$allowed) { |
|
119 | + if (!$allowed) |
|
120 | + { |
|
116 | 121 | $type = get_class($element); |
117 | 122 | throw new ReactorException("Elements with type '{$type}' are not allowed"); |
118 | 123 | } |
@@ -142,8 +147,10 @@ discard block |
||
142 | 147 | */ |
143 | 148 | public function remove(string $name): Aggregator |
144 | 149 | { |
145 | - foreach ($this->elements as $index => $element) { |
|
146 | - if ($element instanceof NamedInterface && $element->getName() === $name) { |
|
150 | + foreach ($this->elements as $index => $element) |
|
151 | + { |
|
152 | + if ($element instanceof NamedInterface && $element->getName() === $name) |
|
153 | + { |
|
147 | 154 | unset($this->elements[$index]); |
148 | 155 | } |
149 | 156 | } |
@@ -197,8 +204,10 @@ discard block |
||
197 | 204 | */ |
198 | 205 | public function replace($search, $replace): Aggregator |
199 | 206 | { |
200 | - foreach ($this->elements as $element) { |
|
201 | - if ($element instanceof ReplaceableInterface) { |
|
207 | + foreach ($this->elements as $element) |
|
208 | + { |
|
209 | + if ($element instanceof ReplaceableInterface) |
|
210 | + { |
|
202 | 211 | $element->replace($search, $replace); |
203 | 212 | } |
204 | 213 | } |
@@ -213,7 +222,8 @@ discard block |
||
213 | 222 | { |
214 | 223 | $result = ''; |
215 | 224 | |
216 | - foreach ($this->elements as $element) { |
|
225 | + foreach ($this->elements as $element) |
|
226 | + { |
|
217 | 227 | $result .= $element->render($indentLevel) . "\n\n"; |
218 | 228 | } |
219 | 229 | |
@@ -229,8 +239,10 @@ discard block |
||
229 | 239 | */ |
230 | 240 | protected function find(string $name): DeclarationInterface |
231 | 241 | { |
232 | - foreach ($this->elements as $element) { |
|
233 | - if ($element instanceof NamedInterface && $element->getName() === $name) { |
|
242 | + foreach ($this->elements as $element) |
|
243 | + { |
|
244 | + if ($element instanceof NamedInterface && $element->getName() === $name) |
|
245 | + { |
|
234 | 246 | return $element; |
235 | 247 | } |
236 | 248 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | */ |
39 | 39 | public function get(string $name): Method |
40 | 40 | { |
41 | - if (!$this->has($name)) { |
|
41 | + if (!$this->has($name)){ |
|
42 | 42 | //Automatically creating constant |
43 | 43 | $method = new Method($name); |
44 | 44 | $this->add($method); |
@@ -38,7 +38,8 @@ |
||
38 | 38 | */ |
39 | 39 | public function get(string $name): Method |
40 | 40 | { |
41 | - if (!$this->has($name)) { |
|
41 | + if (!$this->has($name)) |
|
42 | + { |
|
42 | 43 | //Automatically creating constant |
43 | 44 | $method = new Method($name); |
44 | 45 | $this->add($method); |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function get(string $name): Parameter |
40 | 40 | { |
41 | - if (!$this->has($name)) { |
|
41 | + if (!$this->has($name)){ |
|
42 | 42 | //Automatically creating constant |
43 | 43 | $parameter = new Parameter($name); |
44 | 44 | $this->add($parameter); |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * Overwriting parent call. |
59 | 59 | */ |
60 | 60 | $parameters = []; |
61 | - foreach ($this->getIterator() as $element) { |
|
61 | + foreach ($this->getIterator() as $element){ |
|
62 | 62 | $parameters[] = $element->render(0); |
63 | 63 | } |
64 | 64 |
@@ -38,7 +38,8 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function get(string $name): Parameter |
40 | 40 | { |
41 | - if (!$this->has($name)) { |
|
41 | + if (!$this->has($name)) |
|
42 | + { |
|
42 | 43 | //Automatically creating constant |
43 | 44 | $parameter = new Parameter($name); |
44 | 45 | $this->add($parameter); |
@@ -58,7 +59,8 @@ discard block |
||
58 | 59 | * Overwriting parent call. |
59 | 60 | */ |
60 | 61 | $parameters = []; |
61 | - foreach ($this->getIterator() as $element) { |
|
62 | + foreach ($this->getIterator() as $element) |
|
63 | + { |
|
62 | 64 | $parameters[] = $element->render(0); |
63 | 65 | } |
64 | 66 |
@@ -38,7 +38,7 @@ |
||
38 | 38 | */ |
39 | 39 | public function get(string $name): Constant |
40 | 40 | { |
41 | - if (!$this->has($name)) { |
|
41 | + if (!$this->has($name)){ |
|
42 | 42 | $constant = new Constant($name, null); |
43 | 43 | $this->add($constant); |
44 | 44 |
@@ -38,7 +38,8 @@ |
||
38 | 38 | */ |
39 | 39 | public function get(string $name): Constant |
40 | 40 | { |
41 | - if (!$this->has($name)) { |
|
41 | + if (!$this->has($name)) |
|
42 | + { |
|
42 | 43 | $constant = new Constant($name, null); |
43 | 44 | $this->add($constant); |
44 | 45 |
@@ -38,7 +38,7 @@ |
||
38 | 38 | */ |
39 | 39 | public function get(string $name): Property |
40 | 40 | { |
41 | - if (!$this->has($name)) { |
|
41 | + if (!$this->has($name)){ |
|
42 | 42 | //Automatically creating constant |
43 | 43 | $property = new Property($name); |
44 | 44 | $this->add($property); |
@@ -38,7 +38,8 @@ |
||
38 | 38 | */ |
39 | 39 | public function get(string $name): Property |
40 | 40 | { |
41 | - if (!$this->has($name)) { |
|
41 | + if (!$this->has($name)) |
|
42 | + { |
|
42 | 43 | //Automatically creating constant |
43 | 44 | $property = new Property($name); |
44 | 45 | $this->add($property); |
@@ -44,15 +44,15 @@ discard block |
||
44 | 44 | 'namespaces' => $config->getNamespaces(), |
45 | 45 | ]); |
46 | 46 | |
47 | - foreach ($this->config->getDependencies() as $dependency) { |
|
47 | + foreach ($this->config->getDependencies() as $dependency){ |
|
48 | 48 | $this->addDependency($dependency->resolve($factory)); |
49 | 49 | } |
50 | 50 | |
51 | - foreach ($this->config->getEngines() as $engine) { |
|
51 | + foreach ($this->config->getEngines() as $engine){ |
|
52 | 52 | $this->addEngine($engine->resolve($factory)); |
53 | 53 | } |
54 | 54 | |
55 | - if ($this->config->isCacheEnabled()) { |
|
55 | + if ($this->config->isCacheEnabled()){ |
|
56 | 56 | $this->cache = new ViewCache(); |
57 | 57 | } |
58 | 58 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | { |
85 | 85 | $this->engines[] = $engine->withLoader($this->loader); |
86 | 86 | |
87 | - uasort($this->engines, function (EngineInterface $a, EngineInterface $b) { |
|
87 | + uasort($this->engines, function (EngineInterface $a, EngineInterface $b){ |
|
88 | 88 | return strcmp($a->getLoader()->getExtension(), $b->getLoader()->getExtension()); |
89 | 89 | }); |
90 | 90 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | */ |
111 | 111 | public function compile(string $path): void |
112 | 112 | { |
113 | - if ($this->cache !== null) { |
|
113 | + if ($this->cache !== null){ |
|
114 | 114 | $this->cache->resetPath($path); |
115 | 115 | } |
116 | 116 | |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | |
119 | 119 | // Rotate all possible context variants and warm up cache |
120 | 120 | $generator = new ContextGenerator($this->context); |
121 | - foreach ($generator->generate() as $context) { |
|
121 | + foreach ($generator->generate() as $context){ |
|
122 | 122 | $engine->reset($path, $context); |
123 | 123 | $engine->compile($path, $context); |
124 | 124 | } |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | */ |
132 | 132 | public function reset(string $path): void |
133 | 133 | { |
134 | - if ($this->cache !== null) { |
|
134 | + if ($this->cache !== null){ |
|
135 | 135 | $this->cache->resetPath($path); |
136 | 136 | } |
137 | 137 | |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | |
140 | 140 | // Rotate all possible context variants and warm up cache |
141 | 141 | $generator = new ContextGenerator($this->context); |
142 | - foreach ($generator->generate() as $context) { |
|
142 | + foreach ($generator->generate() as $context){ |
|
143 | 143 | $engine->reset($path, $context); |
144 | 144 | } |
145 | 145 | } |
@@ -154,13 +154,13 @@ discard block |
||
154 | 154 | */ |
155 | 155 | public function get(string $path): ViewInterface |
156 | 156 | { |
157 | - if ($this->cache !== null && $this->cache->has($this->context, $path)) { |
|
157 | + if ($this->cache !== null && $this->cache->has($this->context, $path)){ |
|
158 | 158 | return $this->cache->get($this->context, $path); |
159 | 159 | } |
160 | 160 | |
161 | 161 | $view = $this->findEngine($path)->get($path, $this->context); |
162 | 162 | |
163 | - if ($this->cache !== null) { |
|
163 | + if ($this->cache !== null){ |
|
164 | 164 | $this->cache->set($this->context, $path, $view); |
165 | 165 | } |
166 | 166 | |
@@ -187,8 +187,8 @@ discard block |
||
187 | 187 | */ |
188 | 188 | protected function findEngine(string $path): EngineInterface |
189 | 189 | { |
190 | - foreach ($this->engines as $engine) { |
|
191 | - if ($engine->getLoader()->exists($path)) { |
|
190 | + foreach ($this->engines as $engine){ |
|
191 | + if ($engine->getLoader()->exists($path)){ |
|
192 | 192 | return $engine; |
193 | 193 | } |
194 | 194 | } |
@@ -44,15 +44,18 @@ discard block |
||
44 | 44 | 'namespaces' => $config->getNamespaces(), |
45 | 45 | ]); |
46 | 46 | |
47 | - foreach ($this->config->getDependencies() as $dependency) { |
|
47 | + foreach ($this->config->getDependencies() as $dependency) |
|
48 | + { |
|
48 | 49 | $this->addDependency($dependency->resolve($factory)); |
49 | 50 | } |
50 | 51 | |
51 | - foreach ($this->config->getEngines() as $engine) { |
|
52 | + foreach ($this->config->getEngines() as $engine) |
|
53 | + { |
|
52 | 54 | $this->addEngine($engine->resolve($factory)); |
53 | 55 | } |
54 | 56 | |
55 | - if ($this->config->isCacheEnabled()) { |
|
57 | + if ($this->config->isCacheEnabled()) |
|
58 | + { |
|
56 | 59 | $this->cache = new ViewCache(); |
57 | 60 | } |
58 | 61 | } |
@@ -84,7 +87,8 @@ discard block |
||
84 | 87 | { |
85 | 88 | $this->engines[] = $engine->withLoader($this->loader); |
86 | 89 | |
87 | - uasort($this->engines, function (EngineInterface $a, EngineInterface $b) { |
|
90 | + uasort($this->engines, function (EngineInterface $a, EngineInterface $b) |
|
91 | + { |
|
88 | 92 | return strcmp($a->getLoader()->getExtension(), $b->getLoader()->getExtension()); |
89 | 93 | }); |
90 | 94 | |
@@ -110,7 +114,8 @@ discard block |
||
110 | 114 | */ |
111 | 115 | public function compile(string $path): void |
112 | 116 | { |
113 | - if ($this->cache !== null) { |
|
117 | + if ($this->cache !== null) |
|
118 | + { |
|
114 | 119 | $this->cache->resetPath($path); |
115 | 120 | } |
116 | 121 | |
@@ -118,7 +123,8 @@ discard block |
||
118 | 123 | |
119 | 124 | // Rotate all possible context variants and warm up cache |
120 | 125 | $generator = new ContextGenerator($this->context); |
121 | - foreach ($generator->generate() as $context) { |
|
126 | + foreach ($generator->generate() as $context) |
|
127 | + { |
|
122 | 128 | $engine->reset($path, $context); |
123 | 129 | $engine->compile($path, $context); |
124 | 130 | } |
@@ -131,7 +137,8 @@ discard block |
||
131 | 137 | */ |
132 | 138 | public function reset(string $path): void |
133 | 139 | { |
134 | - if ($this->cache !== null) { |
|
140 | + if ($this->cache !== null) |
|
141 | + { |
|
135 | 142 | $this->cache->resetPath($path); |
136 | 143 | } |
137 | 144 | |
@@ -139,7 +146,8 @@ discard block |
||
139 | 146 | |
140 | 147 | // Rotate all possible context variants and warm up cache |
141 | 148 | $generator = new ContextGenerator($this->context); |
142 | - foreach ($generator->generate() as $context) { |
|
149 | + foreach ($generator->generate() as $context) |
|
150 | + { |
|
143 | 151 | $engine->reset($path, $context); |
144 | 152 | } |
145 | 153 | } |
@@ -154,13 +162,15 @@ discard block |
||
154 | 162 | */ |
155 | 163 | public function get(string $path): ViewInterface |
156 | 164 | { |
157 | - if ($this->cache !== null && $this->cache->has($this->context, $path)) { |
|
165 | + if ($this->cache !== null && $this->cache->has($this->context, $path)) |
|
166 | + { |
|
158 | 167 | return $this->cache->get($this->context, $path); |
159 | 168 | } |
160 | 169 | |
161 | 170 | $view = $this->findEngine($path)->get($path, $this->context); |
162 | 171 | |
163 | - if ($this->cache !== null) { |
|
172 | + if ($this->cache !== null) |
|
173 | + { |
|
164 | 174 | $this->cache->set($this->context, $path, $view); |
165 | 175 | } |
166 | 176 | |
@@ -187,8 +197,10 @@ discard block |
||
187 | 197 | */ |
188 | 198 | protected function findEngine(string $path): EngineInterface |
189 | 199 | { |
190 | - foreach ($this->engines as $engine) { |
|
191 | - if ($engine->getLoader()->exists($path)) { |
|
200 | + foreach ($this->engines as $engine) |
|
201 | + { |
|
202 | + if ($engine->getLoader()->exists($path)) |
|
203 | + { |
|
192 | 204 | return $engine; |
193 | 205 | } |
194 | 206 | } |
@@ -63,7 +63,7 @@ |
||
63 | 63 | 'handler' => new Autowire( |
64 | 64 | FileHandler::class, |
65 | 65 | [ |
66 | - 'directory' => $directories->get('runtime') . 'session', |
|
66 | + 'directory' => $directories->get('runtime').'session', |
|
67 | 67 | 'lifetime' => 86400, |
68 | 68 | ] |
69 | 69 | ), |
@@ -34,13 +34,13 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function perform(DatabaseConfig $config, DatabaseManager $dbal): void |
36 | 36 | { |
37 | - if ($this->argument('db')) { |
|
37 | + if ($this->argument('db')){ |
|
38 | 38 | $databases = [$this->argument('db')]; |
39 | - } else { |
|
39 | + }else{ |
|
40 | 40 | $databases = array_keys($config->getDatabases()); |
41 | 41 | } |
42 | 42 | |
43 | - if (empty($databases)) { |
|
43 | + if (empty($databases)){ |
|
44 | 44 | $this->writeln('<fg=red>No databases found.</fg=red>'); |
45 | 45 | |
46 | 46 | return; |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | ] |
59 | 59 | ); |
60 | 60 | |
61 | - foreach ($databases as $database) { |
|
61 | + foreach ($databases as $database){ |
|
62 | 62 | $database = $dbal->database($database); |
63 | 63 | |
64 | 64 | /** @var Driver $driver */ |
@@ -71,12 +71,12 @@ discard block |
||
71 | 71 | $database->getPrefix() ?: '<comment>---</comment>', |
72 | 72 | ]; |
73 | 73 | |
74 | - try { |
|
74 | + try{ |
|
75 | 75 | $driver->connect(); |
76 | - } catch (\Exception $exception) { |
|
76 | + }catch (\Exception $exception){ |
|
77 | 77 | $this->renderException($grid, $header, $exception); |
78 | 78 | |
79 | - if ($database->getName() != end($databases)) { |
|
79 | + if ($database->getName() != end($databases)){ |
|
80 | 80 | $grid->addRow(new TableSeparator()); |
81 | 81 | } |
82 | 82 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | $header[] = '<info>connected</info>'; |
87 | 87 | $this->renderTables($grid, $header, $database); |
88 | - if ($database->getName() != end($databases)) { |
|
88 | + if ($database->getName() != end($databases)){ |
|
89 | 89 | $grid->addRow(new TableSeparator()); |
90 | 90 | } |
91 | 91 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | */ |
120 | 120 | private function renderTables(Table $grid, array $header, Database $database): void |
121 | 121 | { |
122 | - foreach ($database->getTables() as $table) { |
|
122 | + foreach ($database->getTables() as $table){ |
|
123 | 123 | $grid->addRow( |
124 | 124 | array_merge( |
125 | 125 | $header, |
@@ -34,13 +34,17 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function perform(DatabaseConfig $config, DatabaseManager $dbal): void |
36 | 36 | { |
37 | - if ($this->argument('db')) { |
|
37 | + if ($this->argument('db')) |
|
38 | + { |
|
38 | 39 | $databases = [$this->argument('db')]; |
39 | - } else { |
|
40 | + } |
|
41 | + else |
|
42 | + { |
|
40 | 43 | $databases = array_keys($config->getDatabases()); |
41 | 44 | } |
42 | 45 | |
43 | - if (empty($databases)) { |
|
46 | + if (empty($databases)) |
|
47 | + { |
|
44 | 48 | $this->writeln('<fg=red>No databases found.</fg=red>'); |
45 | 49 | |
46 | 50 | return; |
@@ -58,7 +62,8 @@ discard block |
||
58 | 62 | ] |
59 | 63 | ); |
60 | 64 | |
61 | - foreach ($databases as $database) { |
|
65 | + foreach ($databases as $database) |
|
66 | + { |
|
62 | 67 | $database = $dbal->database($database); |
63 | 68 | |
64 | 69 | /** @var Driver $driver */ |
@@ -71,12 +76,16 @@ discard block |
||
71 | 76 | $database->getPrefix() ?: '<comment>---</comment>', |
72 | 77 | ]; |
73 | 78 | |
74 | - try { |
|
79 | + try |
|
80 | + { |
|
75 | 81 | $driver->connect(); |
76 | - } catch (\Exception $exception) { |
|
82 | + } |
|
83 | + catch (\Exception $exception) |
|
84 | + { |
|
77 | 85 | $this->renderException($grid, $header, $exception); |
78 | 86 | |
79 | - if ($database->getName() != end($databases)) { |
|
87 | + if ($database->getName() != end($databases)) |
|
88 | + { |
|
80 | 89 | $grid->addRow(new TableSeparator()); |
81 | 90 | } |
82 | 91 | |
@@ -85,7 +94,8 @@ discard block |
||
85 | 94 | |
86 | 95 | $header[] = '<info>connected</info>'; |
87 | 96 | $this->renderTables($grid, $header, $database); |
88 | - if ($database->getName() != end($databases)) { |
|
97 | + if ($database->getName() != end($databases)) |
|
98 | + { |
|
89 | 99 | $grid->addRow(new TableSeparator()); |
90 | 100 | } |
91 | 101 | } |
@@ -119,7 +129,8 @@ discard block |
||
119 | 129 | */ |
120 | 130 | private function renderTables(Table $grid, array $header, Database $database): void |
121 | 131 | { |
122 | - foreach ($database->getTables() as $table) { |
|
132 | + foreach ($database->getTables() as $table) |
|
133 | + { |
|
123 | 134 | $grid->addRow( |
124 | 135 | array_merge( |
125 | 136 | $header, |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | { |
53 | 53 | $permission = $this->getPermissions($controller, $action); |
54 | 54 | |
55 | - if ($permission !== null && !$this->guard->allows($permission[0], $parameters)) { |
|
55 | + if ($permission !== null && !$this->guard->allows($permission[0], $parameters)){ |
|
56 | 56 | throw new ControllerException($permission[2], $permission[1]); |
57 | 57 | } |
58 | 58 | |
@@ -70,14 +70,14 @@ discard block |
||
70 | 70 | private function getPermissions(string $controller, string $action): ?array |
71 | 71 | { |
72 | 72 | $key = sprintf('%s:%s', $controller, $action); |
73 | - if (array_key_exists($key, $this->cache)) { |
|
73 | + if (array_key_exists($key, $this->cache)){ |
|
74 | 74 | return $this->cache[$key]; |
75 | 75 | } |
76 | 76 | |
77 | 77 | $this->cache[$key] = null; |
78 | - try { |
|
78 | + try{ |
|
79 | 79 | $method = new \ReflectionMethod($controller, $action); |
80 | - } catch (\ReflectionException $e) { |
|
80 | + }catch (\ReflectionException $e){ |
|
81 | 81 | return null; |
82 | 82 | } |
83 | 83 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | Guarded::class |
96 | 96 | ); |
97 | 97 | |
98 | - if ($action === null) { |
|
98 | + if ($action === null){ |
|
99 | 99 | return null; |
100 | 100 | } |
101 | 101 | |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $guarded->errorMessage ?? sprintf('Unauthorized access `%s`', $guarded->permission ?? $method->getName()), |
119 | 119 | ]; |
120 | 120 | |
121 | - if ($guarded->permission === null && $ns === null) { |
|
121 | + if ($guarded->permission === null && $ns === null){ |
|
122 | 122 | throw new InterceptorException( |
123 | 123 | sprintf( |
124 | 124 | 'Unable to apply @Guarded without name or @GuardNamespace on `%s`->`%s`', |
@@ -128,16 +128,16 @@ discard block |
||
128 | 128 | ); |
129 | 129 | } |
130 | 130 | |
131 | - if ($ns !== null) { |
|
131 | + if ($ns !== null){ |
|
132 | 132 | $permission[0] = sprintf('%s.%s', $ns->namespace, $permission[0]); |
133 | 133 | } |
134 | 134 | |
135 | - if ($this->namespace !== null) { |
|
135 | + if ($this->namespace !== null){ |
|
136 | 136 | // global namespace |
137 | 137 | $permission[0] = sprintf('%s.%s', $this->namespace, $permission[0]); |
138 | 138 | } |
139 | 139 | |
140 | - switch ($guarded->else) { |
|
140 | + switch ($guarded->else){ |
|
141 | 141 | case 'unauthorized': |
142 | 142 | $permission[1] = ControllerException::UNAUTHORIZED; |
143 | 143 | break; |
@@ -52,7 +52,8 @@ discard block |
||
52 | 52 | { |
53 | 53 | $permission = $this->getPermissions($controller, $action); |
54 | 54 | |
55 | - if ($permission !== null && !$this->guard->allows($permission[0], $parameters)) { |
|
55 | + if ($permission !== null && !$this->guard->allows($permission[0], $parameters)) |
|
56 | + { |
|
56 | 57 | throw new ControllerException($permission[2], $permission[1]); |
57 | 58 | } |
58 | 59 | |
@@ -70,14 +71,18 @@ discard block |
||
70 | 71 | private function getPermissions(string $controller, string $action): ?array |
71 | 72 | { |
72 | 73 | $key = sprintf('%s:%s', $controller, $action); |
73 | - if (array_key_exists($key, $this->cache)) { |
|
74 | + if (array_key_exists($key, $this->cache)) |
|
75 | + { |
|
74 | 76 | return $this->cache[$key]; |
75 | 77 | } |
76 | 78 | |
77 | 79 | $this->cache[$key] = null; |
78 | - try { |
|
80 | + try |
|
81 | + { |
|
79 | 82 | $method = new \ReflectionMethod($controller, $action); |
80 | - } catch (\ReflectionException $e) { |
|
83 | + } |
|
84 | + catch (\ReflectionException $e) |
|
85 | + { |
|
81 | 86 | return null; |
82 | 87 | } |
83 | 88 | |
@@ -95,7 +100,8 @@ discard block |
||
95 | 100 | Guarded::class |
96 | 101 | ); |
97 | 102 | |
98 | - if ($action === null) { |
|
103 | + if ($action === null) |
|
104 | + { |
|
99 | 105 | return null; |
100 | 106 | } |
101 | 107 | |
@@ -118,7 +124,8 @@ discard block |
||
118 | 124 | $guarded->errorMessage ?? sprintf('Unauthorized access `%s`', $guarded->permission ?? $method->getName()), |
119 | 125 | ]; |
120 | 126 | |
121 | - if ($guarded->permission === null && $ns === null) { |
|
127 | + if ($guarded->permission === null && $ns === null) |
|
128 | + { |
|
122 | 129 | throw new InterceptorException( |
123 | 130 | sprintf( |
124 | 131 | 'Unable to apply @Guarded without name or @GuardNamespace on `%s`->`%s`', |
@@ -128,16 +135,19 @@ discard block |
||
128 | 135 | ); |
129 | 136 | } |
130 | 137 | |
131 | - if ($ns !== null) { |
|
138 | + if ($ns !== null) |
|
139 | + { |
|
132 | 140 | $permission[0] = sprintf('%s.%s', $ns->namespace, $permission[0]); |
133 | 141 | } |
134 | 142 | |
135 | - if ($this->namespace !== null) { |
|
143 | + if ($this->namespace !== null) |
|
144 | + { |
|
136 | 145 | // global namespace |
137 | 146 | $permission[0] = sprintf('%s.%s', $this->namespace, $permission[0]); |
138 | 147 | } |
139 | 148 | |
140 | - switch ($guarded->else) { |
|
149 | + switch ($guarded->else) |
|
150 | + { |
|
141 | 151 | case 'unauthorized': |
142 | 152 | $permission[1] = ControllerException::UNAUTHORIZED; |
143 | 153 | break; |