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