20 lines
328 B
PHP
20 lines
328 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Domain\PlannedItem\Actions;
|
||
|
|
|
||
|
|
use App\Models\PlannedItem;
|
||
|
|
|
||
|
|
class DeletePlannedItemAction
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Delete a planned item
|
||
|
|
*
|
||
|
|
* @param PlannedItem $plannedItem
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function execute(PlannedItem $plannedItem): void
|
||
|
|
{
|
||
|
|
$plannedItem->delete();
|
||
|
|
}
|
||
|
|
}
|