Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | abstract class AbstractHelper implements HelperInterface |
||
31 | { |
||
32 | /** @var string */ |
||
33 | protected $charset = 'UTF-8'; |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | 6 | public function setCharset(string $charset): void |
|
41 | } |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | 4 | public function getCharset(): string |
|
51 |