| Conditions | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function __construct(string $name = "default", string $htmlId = "menu") { |
||
| 28 | 1 | parent::__construct(); |
|
| 29 | 1 | $this->name = $name; |
|
| 30 | 1 | $this->htmlId = $htmlId; |
|
| 31 | 1 | $this->translator = new class implements ITranslator { |
|
| 32 | public function translate($message, ... $parameters): string { |
||
|
1 ignored issue
–
show
|
|||
| 33 | 1 | return $message; |
|
| 34 | } |
||
| 91 | ?> |