| 1 | <?php |
||
| 17 | class BaseService extends InfoBase implements IService |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * |
||
| 21 | * @throws ServiceConfigurationException |
||
| 22 | * @return IMusicServiceEndpoint |
||
| 23 | */ |
||
| 24 | public function artist() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * |
||
| 31 | * @throws ServiceConfigurationException |
||
| 32 | * @return IMusicServiceEndpoint |
||
| 33 | */ |
||
| 34 | public function album() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * |
||
| 41 | * @throws ServiceConfigurationException |
||
| 42 | * @return IMusicServiceEndpoint |
||
| 43 | */ |
||
| 44 | public function song() |
||
| 48 | |||
| 49 | 43 | /** |
|
| 50 | * |
||
| 51 | * @throws ServiceConfigurationException |
||
| 52 | * @return IMusicServiceEndpoint |
||
| 53 | */ |
||
| 54 | public function track() |
||
| 58 | } |
||
| 59 |