@@ -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 |
@@ -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 |
@@ -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 | if (!$this->process($this->field->getValue())) { |
42 | 42 | |
43 | - $this->field->addAttribute('class', 'error'); |
|
43 | + $this->field->addAttribute('class', 'error'); |
|
44 | 44 | $this->field->setErrorMessages([$this->getMessage()]); |
45 | 45 | return false; |
46 | 46 |
@@ -13,7 +13,6 @@ |
||
13 | 13 | use Faulancer\Service\SessionManagerService; |
14 | 14 | use Faulancer\ServiceLocator\ServiceLocator; |
15 | 15 | use Faulancer\Form\Validator\ValidatorChain; |
16 | -use Faulancer\ServiceLocator\ServiceLocatorAwareInterface; |
|
17 | 16 | use Faulancer\ServiceLocator\ServiceLocatorInterface; |
18 | 17 | use Faulancer\Session\SessionManager; |
19 | 18 |
@@ -13,7 +13,6 @@ |
||
13 | 13 | use Faulancer\Http\Request; |
14 | 14 | use Faulancer\Http\Response; |
15 | 15 | use Faulancer\Exception\MethodNotFoundException; |
16 | -use Faulancer\Service\AuthenticatorPlugin; |
|
17 | 16 | use Faulancer\Service\AuthenticatorService; |
18 | 17 | use Faulancer\Service\Config; |
19 | 18 | use Faulancer\Service\SessionManagerService; |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | list($class, $action, $permission, $payload) = $this->_getRoute($this->request->getPath()); |
88 | 88 | |
89 | 89 | /** @var AbstractController $class */ |
90 | - $class = new $class($this->request); |
|
90 | + $class = new $class($this->request); |
|
91 | 91 | |
92 | 92 | if (!empty($permission)) { |
93 | 93 | |
@@ -292,7 +292,7 @@ discard block |
||
292 | 292 | |
293 | 293 | array_splice($var, 0, 1); |
294 | 294 | |
295 | - if ($this->requestType === 'default' && in_array($this->request->getMethod(), $data['method'])) { |
|
295 | + if ($this->requestType === 'default' && in_array($this->request->getMethod(), $data['method'])) { |
|
296 | 296 | |
297 | 297 | return [ |
298 | 298 | $data['controller'], |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | $headers .= 'Content-Type: multipart/mixed; charset=UTF-8; boundary=' . $boundary . $eol; |
189 | 189 | |
190 | 190 | if (!empty($this->from)) { |
191 | - $headers .= 'From: ' .$this->from . $eol; |
|
191 | + $headers .= 'From: ' . $this->from . $eol; |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | if (!empty($this->replyTo)) { |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | } |
247 | 247 | |
248 | 248 | $body .= 'Content-Transfer-Encoding: base64' . $eol; |
249 | - $body .= 'X-Attachment-Id: ' . rand(1000,99999) . $eol . $eol; |
|
249 | + $body .= 'X-Attachment-Id: ' . rand(1000, 99999) . $eol . $eol; |
|
250 | 250 | $body .= $encodedContent . $eol; |
251 | 251 | |
252 | 252 | } |
@@ -80,7 +80,7 @@ |
||
80 | 80 | 'line' => $this->_exception->getLine() |
81 | 81 | ]; |
82 | 82 | |
83 | - $trace = $this->_exception->getTrace(); |
|
83 | + $trace = $this->_exception->getTrace(); |
|
84 | 84 | |
85 | 85 | if (isset($trace[0]['line']) && $trace[0]['line'] !== $raiser['line']) { |
86 | 86 | array_unshift($trace, $raiser); |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | */ |
157 | 157 | public function getVariable(string $key) |
158 | 158 | { |
159 | - if(isset($this->variable[$key])) { |
|
159 | + if (isset($this->variable[$key])) { |
|
160 | 160 | return $this->variable[$key]; |
161 | 161 | } |
162 | 162 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | */ |
172 | 172 | public function hasVariable(string $key) :bool |
173 | 173 | { |
174 | - if(isset($this->variable[$key])) { |
|
174 | + if (isset($this->variable[$key])) { |
|
175 | 175 | return true; |
176 | 176 | } |
177 | 177 | |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | */ |
187 | 187 | public function setVariables(array $variables = []) :self |
188 | 188 | { |
189 | - foreach($variables AS $key=>$value) { |
|
189 | + foreach ($variables AS $key=>$value) { |
|
190 | 190 | $this->setVariable($key, $value); |
191 | 191 | } |
192 | 192 | |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | */ |
273 | 273 | public function __call($name, $arguments) |
274 | 274 | { |
275 | - $coreViewHelper = __NAMESPACE__ . '\Helper\\' . ucfirst($name); |
|
275 | + $coreViewHelper = __NAMESPACE__ . '\Helper\\' . ucfirst($name); |
|
276 | 276 | |
277 | 277 | /* |
278 | 278 | if (!empty($this->viewHelpers[$coreViewHelper])) { |
@@ -327,8 +327,8 @@ discard block |
||
327 | 327 | */ |
328 | 328 | public function __destruct() |
329 | 329 | { |
330 | - unset( $this->variable ); |
|
331 | - unset( $this->template ); |
|
330 | + unset($this->variable); |
|
331 | + unset($this->template); |
|
332 | 332 | } |
333 | 333 | |
334 | 334 | } |
335 | 335 | \ No newline at end of file |