@@ -58,7 +58,7 @@ |
||
58 | 58 | foreach ($definition['options'] as $val => $text) { |
59 | 59 | |
60 | 60 | $selected = $isSelected($val) === true ? ' selected="selected"' : ''; |
61 | - $option = '<option value="' . $val .'"%s>' . $text . '</option>'; |
|
61 | + $option = '<option value="' . $val . '"%s>' . $text . '</option>'; |
|
62 | 62 | |
63 | 63 | $output .= sprintf($option, $selected); |
64 | 64 |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | */ |
146 | 146 | public function getVariable(string $key) |
147 | 147 | { |
148 | - if(isset($this->variable[$key])) { |
|
148 | + if (isset($this->variable[$key])) { |
|
149 | 149 | return $this->variable[$key]; |
150 | 150 | } |
151 | 151 | |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | */ |
161 | 161 | public function hasVariable(string $key) :bool |
162 | 162 | { |
163 | - if(isset($this->variable[$key])) { |
|
163 | + if (isset($this->variable[$key])) { |
|
164 | 164 | return true; |
165 | 165 | } |
166 | 166 | |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | */ |
176 | 176 | public function setVariables(array $variables = []) :self |
177 | 177 | { |
178 | - foreach($variables AS $key=>$value) { |
|
178 | + foreach ($variables AS $key=>$value) { |
|
179 | 179 | $this->setVariable($key, $value); |
180 | 180 | } |
181 | 181 | |
@@ -292,8 +292,8 @@ discard block |
||
292 | 292 | */ |
293 | 293 | public function __destruct() |
294 | 294 | { |
295 | - unset( $this->variable ); |
|
296 | - unset( $this->template ); |
|
295 | + unset($this->variable); |
|
296 | + unset($this->template); |
|
297 | 297 | } |
298 | 298 | |
299 | 299 | } |
300 | 300 | \ No newline at end of file |
@@ -31,8 +31,8 @@ |
||
31 | 31 | $subview->setTemplatePath($view->getTemplatePath()); |
32 | 32 | } |
33 | 33 | |
34 | - $subview->setTemplate( $template ); |
|
35 | - $subview->setVariables( $variables ); |
|
34 | + $subview->setTemplate($template); |
|
35 | + $subview->setVariables($variables); |
|
36 | 36 | return $subview->render(); |
37 | 37 | } |
38 | 38 |
@@ -239,7 +239,7 @@ |
||
239 | 239 | |
240 | 240 | array_splice($var, 0, 1); |
241 | 241 | |
242 | - if ($this->requestType === 'default' && in_array($this->request->getMethod(), $data['method'])) { |
|
242 | + if ($this->requestType === 'default' && in_array($this->request->getMethod(), $data['method'])) { |
|
243 | 243 | |
244 | 244 | return [ |
245 | 245 | 'class' => $data['controller'], |
@@ -65,7 +65,7 @@ |
||
65 | 65 | 'line' => $this->exception->getLine() |
66 | 66 | ]; |
67 | 67 | |
68 | - $trace = $this->exception->getTrace(); |
|
68 | + $trace = $this->exception->getTrace(); |
|
69 | 69 | |
70 | 70 | if (isset($trace[0]['line']) && $trace[0]['line'] !== $raiser['line']) { |
71 | 71 | array_unshift($trace, $raiser); |
@@ -248,7 +248,7 @@ |
||
248 | 248 | * @return boolean |
249 | 249 | * @codeCoverageIgnore |
250 | 250 | */ |
251 | - private function addValidators(AbstractType &$typeClass, array $definition) |
|
251 | + private function addValidators(AbstractType & $typeClass, array $definition) |
|
252 | 252 | { |
253 | 253 | if (!empty($definition['validator'])) { |
254 | 254 |
@@ -55,7 +55,7 @@ |
||
55 | 55 | $id = ' id="' . implode(' ', $elementAttributes['id']) . '" '; |
56 | 56 | } |
57 | 57 | |
58 | - if (!empty($elementAttributes['class'])){ |
|
58 | + if (!empty($elementAttributes['class'])) { |
|
59 | 59 | $class = 'class="' . implode(' ', $elementAttributes['class']) . '" '; |
60 | 60 | } |
61 | 61 |
@@ -40,7 +40,7 @@ |
||
40 | 40 | } |
41 | 41 | |
42 | 42 | /** @var array $files */ |
43 | - $files = $view->getVariable('assets'.ucfirst($type)); |
|
43 | + $files = $view->getVariable('assets' . ucfirst($type)); |
|
44 | 44 | |
45 | 45 | if (empty($files)) { |
46 | 46 | return ''; |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | class XmlResponse extends Response |
13 | 13 | { |
14 | 14 | |
15 | - public function __construct ($content = []) |
|
15 | + public function __construct($content = []) |
|
16 | 16 | { |
17 | 17 | parent::__construct($content); |
18 | 18 | |
@@ -27,15 +27,15 @@ discard block |
||
27 | 27 | * @param \SimpleXMLElement $xml |
28 | 28 | * @codeCoverageIgnore |
29 | 29 | */ |
30 | - private function convertArrayToXml(\SimpleXMLElement &$xml, $data) |
|
30 | + private function convertArrayToXml(\SimpleXMLElement & $xml, $data) |
|
31 | 31 | { |
32 | 32 | foreach ($data as $key=>$value) { |
33 | 33 | |
34 | - if(is_numeric($key)) { |
|
34 | + if (is_numeric($key)) { |
|
35 | 35 | $key = 'item' . $key; |
36 | 36 | } |
37 | 37 | |
38 | - if(!empty($value['value']) && is_array($value['value'])) { |
|
38 | + if (!empty($value['value']) && is_array($value['value'])) { |
|
39 | 39 | |
40 | 40 | $node = $this->generateNode($xml, $key, $value); |
41 | 41 | $this->convertArrayToXml($node, $value['value']); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * @return null|\SimpleXMLElement |
55 | 55 | * @codeCoverageIgnore |
56 | 56 | */ |
57 | - private function generateNode(\SimpleXMLElement &$xml, $key, $value = null) |
|
57 | + private function generateNode(\SimpleXMLElement & $xml, $key, $value = null) |
|
58 | 58 | { |
59 | 59 | $node = null; |
60 | 60 |