| 1 | <?php |
||
| 10 | class DeleteFormHandler implements FormHandlerInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var Router |
||
| 14 | */ |
||
| 15 | private $router; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * DeleteFormHandler constructor. |
||
| 19 | * |
||
| 20 | * @param Router $router |
||
| 21 | */ |
||
| 22 | public function __construct(Router $router) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param FormInterface $form |
||
| 29 | * @param AdminInterface $admin |
||
| 30 | * |
||
| 31 | * @return RedirectResponse |
||
| 32 | */ |
||
| 33 | public function handle(FormInterface $form, AdminInterface $admin) |
||
| 61 | } |
||
| 62 |