| 1 | <?php | ||
| 12 | abstract class MedicalEndpoint extends Endpoint | ||
| 13 | { | ||
| 14 | |||
| 15 | /** | ||
| 16 | * @var bool | ||
| 17 | */ | ||
| 18 | protected $listReturnsArray = false; | ||
| 19 | |||
| 20 | /** | ||
| 21 |      * {@inheritDoc} | ||
| 22 | */ | ||
| 23 | protected function buildListUrl() | ||
| 29 | |||
| 30 | /** | ||
| 31 |      * {@inheritDoc} | ||
| 32 | */ | ||
| 33 | protected function buildSpecificEntryUrl($id) | ||
| 40 | |||
| 41 | /** | ||
| 42 |      * {@inheritDoc} | ||
| 43 | */ | ||
| 44 | public function buildRecentUrl() | ||
| 48 | } | ||
| 49 |