Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
5 | class HexDriver implements DriverInterface |
||
6 | { |
||
7 | /** |
||
8 | * Encode the data. |
||
9 | * |
||
10 | * @param mixed $data |
||
11 | * @return string |
||
12 | */ |
||
13 | 4 | public function encode($data) |
|
16 | } |
||
17 | |||
18 | /** |
||
19 | * Decode the data. |
||
20 | * |
||
21 | * @param mixed $data |
||
22 | * @return string |
||
23 | */ |
||
24 | 4 | public function decode($data) |
|
29 |