@@ -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 | |
@@ -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); |
@@ -20,15 +20,15 @@ discard block |
||
| 20 | 20 | * @param \SimpleXMLElement $xml |
| 21 | 21 | * @codeCoverageIgnore |
| 22 | 22 | */ |
| 23 | - private function convertArrayToXml(\SimpleXMLElement &$xml, $data) |
|
| 23 | + private function convertArrayToXml(\SimpleXMLElement & $xml, $data) |
|
| 24 | 24 | { |
| 25 | 25 | foreach ($data as $key=>$value) { |
| 26 | 26 | |
| 27 | - if(is_numeric($key)) { |
|
| 27 | + if (is_numeric($key)) { |
|
| 28 | 28 | $key = 'item' . $key; |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - if(is_array($value['value'])) { |
|
| 31 | + if (is_array($value['value'])) { |
|
| 32 | 32 | |
| 33 | 33 | $node = $this->generateNode($xml, $key, $value); |
| 34 | 34 | $this->convertArrayToXml($node, $value['value']); |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | * @return null|\SimpleXMLElement |
| 48 | 48 | * @codeCoverageIgnore |
| 49 | 49 | */ |
| 50 | - private function generateNode(\SimpleXMLElement &$xml, $key, $value = null) |
|
| 50 | + private function generateNode(\SimpleXMLElement & $xml, $key, $value = null) |
|
| 51 | 51 | { |
| 52 | 52 | $node = null; |
| 53 | 53 | |
@@ -153,7 +153,7 @@ |
||
| 153 | 153 | */ |
| 154 | 154 | public function setBody($body) |
| 155 | 155 | { |
| 156 | - $this->body = $body; |
|
| 156 | + $this->body = $body; |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | /** |
@@ -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 ''; |