| 1 | <?php |
||
| 13 | final class EndpointRouteLoader extends Loader |
||
| 14 | { |
||
| 15 | /** @var bool */ |
||
| 16 | private $loaded = false; |
||
| 17 | /** @var array */ |
||
| 18 | private $endpoints = []; |
||
| 19 | |||
| 20 | /** {@inheritdoc} */ |
||
| 21 | 1 | public function load($resource, $type = null) |
|
| 42 | |||
| 43 | /** {@inheritdoc} */ |
||
| 44 | 1 | public function supports($resource, $type = null) |
|
| 48 | |||
| 49 | 1 | public function addEndpoint($name, array $endpoint) |
|
| 57 | } |
||
| 58 |