@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * @param $oldDescMode |
| 32 | 32 | * @param $descMode |
| 33 | 33 | * @param $text |
| 34 | - * @return mixed|string |
|
| 34 | + * @return string |
|
| 35 | 35 | */ |
| 36 | 36 | function processEditorInput($oldDescMode, $descMode, $text, &$representText) |
| 37 | 37 | { |
@@ -54,9 +54,9 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | 56 | * @param $text |
| 57 | - * @param $texthtml0 |
|
| 57 | + * @param boolean $texthtml0 |
|
| 58 | 58 | * |
| 59 | - * @return mixed|string |
|
| 59 | + * @return string |
|
| 60 | 60 | */ |
| 61 | 61 | function html2plaintext($text, $texthtml0) |
| 62 | 62 | { |
@@ -6,18 +6,18 @@ |
||
| 6 | 6 | |
| 7 | 7 | class SecurityRolesEntity extends AbstractEntity |
| 8 | 8 | { |
| 9 | - /** @var int */ |
|
| 10 | - public $id; |
|
| 9 | + /** @var int */ |
|
| 10 | + public $id; |
|
| 11 | 11 | |
| 12 | - /** @var string */ |
|
| 13 | - public $role; |
|
| 12 | + /** @var string */ |
|
| 13 | + public $role; |
|
| 14 | 14 | |
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * @return bool |
|
| 18 | - */ |
|
| 19 | - public function isNew(): bool |
|
| 20 | - { |
|
| 21 | - return $this->id === null; |
|
| 22 | - } |
|
| 16 | + /** |
|
| 17 | + * @return bool |
|
| 18 | + */ |
|
| 19 | + public function isNew(): bool |
|
| 20 | + { |
|
| 21 | + return $this->id === null; |
|
| 22 | + } |
|
| 23 | 23 | } |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function index(): Response |
| 15 | 15 | { |
| 16 | - return $this->render('kitchensink/index.html.twig'); |
|
| 16 | + return $this->render('kitchensink/index.html.twig'); |
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | /** |