| 1 | <?php |
||
| 11 | final class Invoker implements InvokerInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var NamedParameterInterface |
||
| 15 | */ |
||
| 16 | private $params; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var RenderInterface |
||
| 20 | */ |
||
| 21 | private $optionsRenderer; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @Named("optionsRenderer=options") |
||
| 25 | */ |
||
| 26 | public function __construct(NamedParameterInterface $params, RenderInterface $optionsRenderer) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function invoke(AbstractRequest $request) : ResourceObject |
||
| 50 | |||
| 51 | private function noMethod(AbstractRequest $request) : ResourceObject |
||
| 62 | } |
||
| 63 |