| 1 | <?php  | 
            ||
| 23 | class Delete extends Action  | 
            ||
| 24 | { | 
            ||
| 25 | /**  | 
            ||
| 26 | * @const string  | 
            ||
| 27 | */  | 
            ||
| 28 | const DELETE_MESSAGE = 'Successfully Deleted Job Item';  | 
            ||
| 29 | |||
| 30 | /**  | 
            ||
| 31 | * @var MassActionDelete  | 
            ||
| 32 | */  | 
            ||
| 33 | private $deleteAction;  | 
            ||
| 34 | |||
| 35 | /**  | 
            ||
| 36 | * Delete constructor.  | 
            ||
| 37 | * @param MassActionDelete $deleteAction  | 
            ||
| 38 | * @param Context $context  | 
            ||
| 39 | */  | 
            ||
| 40 | public function __construct(  | 
            ||
| 48 | |||
| 49 | /**  | 
            ||
| 50 | * @return ResponseInterface|ResultInterface|void  | 
            ||
| 51 | * @throws Exception  | 
            ||
| 52 | */  | 
            ||
| 53 | public function execute()  | 
            ||
| 61 | }  | 
            ||
| 62 |