@@ -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 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | * |
| 21 | 21 | * @param string $location The path as string |
| 22 | 22 | * @param integer $code The status code |
| 23 | - * @return mixed |
|
| 23 | + * @return boolean |
|
| 24 | 24 | * @throws InvalidArgumentException |
| 25 | 25 | */ |
| 26 | 26 | public function redirect(string $location, int $code = 301) |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
| 132 | - * @param $file |
|
| 132 | + * @param string $file |
|
| 133 | 133 | * @return string |
| 134 | 134 | * @codeCoverageIgnore |
| 135 | 135 | */ |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | /** |
| 144 | - * @param $file |
|
| 144 | + * @param string $file |
|
| 145 | 145 | * @return string |
| 146 | 146 | * @codeCoverageIgnore |
| 147 | 147 | */ |
@@ -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'], |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
| 79 | - * @param $request |
|
| 79 | + * @param Request $request |
|
| 80 | 80 | * @param $e |
| 81 | 81 | * @return Http\Response |
| 82 | 82 | * @codeCoverageIgnore |
@@ -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 | |
@@ -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 | |
@@ -94,7 +94,7 @@ |
||
| 94 | 94 | /** |
| 95 | 95 | * Get response body and set headers |
| 96 | 96 | * |
| 97 | - * @return mixed |
|
| 97 | + * @return string |
|
| 98 | 98 | */ |
| 99 | 99 | public function getContent() |
| 100 | 100 | { |
@@ -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 | |
@@ -111,7 +111,7 @@ |
||
| 111 | 111 | |
| 112 | 112 | /** |
| 113 | 113 | * @param array $roles |
| 114 | - * @return bool |
|
| 114 | + * @return null|boolean |
|
| 115 | 115 | */ |
| 116 | 116 | public function isPermitted(array $roles) |
| 117 | 117 | { |
@@ -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 | } |