Total Complexity | 5 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class FormatManager implements FormatManagerContract |
||
14 | { |
||
15 | private static array $formats; |
||
16 | |||
17 | public function __construct(private string $defaultFormat) |
||
18 | { |
||
19 | } |
||
20 | |||
21 | public function get(string $name): FormatContract |
||
29 | } |
||
30 | |||
31 | public function register(FormatContract $format): void |
||
34 | } |
||
35 | } |
||
36 |