| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class Util implements UtilInterface |
||
| 14 | { |
||
| 15 | use UtilTrait; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * The constructor |
||
| 19 | * |
||
| 20 | * @param TranslatorInterface $trans |
||
| 21 | * @param Input $input |
||
| 22 | */ |
||
| 23 | public function __construct(TranslatorInterface $trans, Input $input) |
||
| 24 | { |
||
| 25 | $this->trans = $trans; |
||
| 26 | $this->input = $input; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritDoc |
||
| 31 | */ |
||
| 32 | public function name(): string |
||
| 35 | } |
||
| 36 | } |
||
| 37 |