16 lines
247 B
PHP
16 lines
247 B
PHP
|
<?php
|
||
|
|
||
|
namespace Drupal\opencase_entities\Form;
|
||
|
|
||
|
use Drupal\Core\Entity\ContentEntityDeleteForm;
|
||
|
|
||
|
/**
|
||
|
* Provides a form for deleting Case entities.
|
||
|
*
|
||
|
* @ingroup opencase_entities
|
||
|
*/
|
||
|
class OCCaseDeleteForm extends ContentEntityDeleteForm {
|
||
|
|
||
|
|
||
|
}
|