@@ -25,7 +25,7 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | public function __invoke(ViewController $view, string $block, string $defaultValue = '') |
| 27 | 27 | { |
| 28 | - if($view->getVariable($block) === '') { |
|
| 28 | + if ($view->getVariable($block) === '') { |
|
| 29 | 29 | return $defaultValue; |
| 30 | 30 | } |
| 31 | 31 | return trim($view->getVariable($block)); |
@@ -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 | foreach ($files AS $file) { |
| 46 | 46 | $result .= sprintf($pattern, $file) . "\n"; |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | */ |
| 161 | 161 | protected function sendMail($headers, $message) |
| 162 | 162 | { |
| 163 | - if (mail(implode(',', $this->recipients), $this->subject,$headers, $message)) { |
|
| 163 | + if (mail(implode(',', $this->recipients), $this->subject, $headers, $message)) { |
|
| 164 | 164 | return true; |
| 165 | 165 | } |
| 166 | 166 | return false; |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | $headers = 'MIME-Version: 1.0' . PHP_EOL; |
| 187 | 187 | |
| 188 | 188 | if (!empty($this->from)) { |
| 189 | - $headers .= 'From: ' .$this->from . PHP_EOL; |
|
| 189 | + $headers .= 'From: ' . $this->from . PHP_EOL; |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | if (!empty($this->replyTo)) { |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | $body .= 'Content-Transfer-Encoding: base64' . PHP_EOL; |
| 247 | - $body .= 'X-Attachment-Id: ' . rand(1000,99999) . PHP_EOL . PHP_EOL; |
|
| 247 | + $body .= 'X-Attachment-Id: ' . rand(1000, 99999) . PHP_EOL . PHP_EOL; |
|
| 248 | 248 | $body .= $encodedContent; |
| 249 | 249 | |
| 250 | 250 | } |
@@ -11,8 +11,6 @@ |
||
| 11 | 11 | use Faulancer\Service\Config; |
| 12 | 12 | use Faulancer\Service\SessionManagerService; |
| 13 | 13 | use Faulancer\ServiceLocator\ServiceLocator; |
| 14 | -use Faulancer\Session\SessionManager; |
|
| 15 | -use Symfony\Component\EventDispatcher\Tests\Service; |
|
| 16 | 14 | |
| 17 | 15 | /** |
| 18 | 16 | * Class Translator |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | protected function triggerRedirect($location = '/', $code = 301) |
| 46 | 46 | { |
| 47 | 47 | header('HTTP/2 ' . $code . ' ' . Response::HTTP_STATUS_CODES[$code]); |
| 48 | - header('Location: ' . $location); |
|
| 48 | + header('Location: ' . $location); |
|
| 49 | 49 | |
| 50 | 50 | exit(0); |
| 51 | 51 | } |
@@ -9,7 +9,6 @@ |
||
| 9 | 9 | use Faulancer\Exception\ClassNotFoundException; |
| 10 | 10 | use Faulancer\Exception\DispatchFailureException; |
| 11 | 11 | use Faulancer\Exception\IncompatibleResponseException; |
| 12 | -use Faulancer\Form\AbstractFormHandler; |
|
| 13 | 12 | use Faulancer\Http\JsonResponse; |
| 14 | 13 | use Faulancer\Http\Request; |
| 15 | 14 | use Faulancer\Http\Response; |
@@ -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'], |
@@ -8,7 +8,6 @@ |
||
| 8 | 8 | namespace Faulancer\ORM; |
| 9 | 9 | |
| 10 | 10 | use Faulancer\Service\AbstractControllerService; |
| 11 | -use Faulancer\Service\DbService; |
|
| 12 | 11 | use Faulancer\ServiceLocator\ServiceLocator; |
| 13 | 12 | use \ORM\EntityManager; |
| 14 | 13 | |
@@ -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 |