| 1 | <?php |
||
| 5 | class HashidsStringDriver extends HashidsHexDriver |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Encode the data. |
||
| 9 | * |
||
| 10 | * @param mixed $data |
||
| 11 | * @return string |
||
| 12 | */ |
||
| 13 | 1 | public function encode($data) |
|
| 17 | |||
| 18 | /** |
||
| 19 | * Decode the data. |
||
| 20 | * |
||
| 21 | * @param mixed $data |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | 1 | public function decode($data) |
|
| 28 | } |
||
| 29 |