| 1 | <?php |
||
| 12 | abstract class SimpleEndpoint 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) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritDoc} |
||
| 40 | */ |
||
| 41 | public function buildRecentUrl() |
||
| 45 | } |
||
| 46 |