| 1 | <?php |
||
| 12 | class DeleteResponder implements ResponderInterface |
||
| 13 | { |
||
| 14 | use ResponderTrait; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var RouterInterface |
||
| 18 | */ |
||
| 19 | private $router; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * CreateResponder constructor. |
||
| 23 | * |
||
| 24 | * @param RouterInterface $router |
||
| 25 | */ |
||
| 26 | public function __construct(RouterInterface $router) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param ActionConfiguration $configuration |
||
| 33 | * @param AdminInterface $admin |
||
| 34 | * @param FormInterface $form |
||
| 35 | * |
||
| 36 | * @return Response |
||
| 37 | */ |
||
| 38 | public function respond( |
||
| 59 | } |
||
| 60 |