| 1 | <?php |
||
| 20 | abstract class AbstractUrl extends AbstractService |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Convert the given information. |
||
| 24 | * |
||
| 25 | * @param $param1 |
||
| 26 | * @param $param2 |
||
| 27 | */ |
||
| 28 | abstract public function convert($param1, $param2); |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Build the speaking base. |
||
| 32 | * |
||
| 33 | * @param int $indexUid |
||
| 34 | * |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | protected function getIndexBase($indexUid): string |
||
| 63 | } |
||
| 64 |