Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Translator implements TranslatorInterface |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @inheritDoc |
||
12 | */ |
||
13 | public function lang(string $idf, $number = null) |
||
15 | // TODO: Implement lang() method. |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * @inheritDoc |
||
20 | */ |
||
21 | public function formatNumber(int $number) |
||
22 | { |
||
23 | // TODO: Implement formatNumber() method. |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @inheritDoc |
||
28 | */ |
||
29 | public function formatTime(float $time) |
||
31 | // TODO: Implement formatTime() method. |
||
32 | } |
||
33 | } |