Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | class Binary extends Numeric |
||
17 | { |
||
18 | 276 | public function __construct() |
|
19 | { |
||
20 | 276 | parent::__construct(16); // Uses Hex as internal format to use hex2bin and bin2hex functions |
|
21 | } |
||
22 | |||
23 | 136 | public function filterValue($value): string |
|
26 | } |
||
27 | |||
28 | 136 | public function returnValue($value): string |
|
42 | } |
||
43 | } |
||
44 |