Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function __construct(string $name = "default", string $htmlId = "menu") { |
||
20 | 1 | parent::__construct(); |
|
21 | 1 | $this->name = $name; |
|
22 | 1 | $this->htmlId = $htmlId; |
|
23 | 1 | $this->translator = new class implements ITranslator { |
|
24 | public function translate($message, ... $parameters): string { |
||
1 ignored issue
–
show
|
|||
25 | 1 | return $message; |
|
26 | } |
||
83 | ?> |