0821b90a7a6b46d68fe54dc81559c7655e37479a
[yaffs-website] / web / core / modules / action / src / Form / ActionDeleteForm.php
1 <?php
2
3 namespace Drupal\action\Form;
4
5 use Drupal\Core\Entity\EntityDeleteForm;
6 use Drupal\Core\Url;
7
8 /**
9  * Builds a form to delete an action.
10  *
11  * @internal
12  */
13 class ActionDeleteForm extends EntityDeleteForm {
14
15   /**
16    * {@inheritdoc}
17    */
18   public function getCancelUrl() {
19     return new Url('entity.action.collection');
20   }
21
22 }