| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class HexIntegerDriver 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 int |
||
| 23 | */ |
||
| 24 | 4 | public function decode($data) |
|
| 29 |