Reviewed-on: https://codeberg.org/lvl0/trip-planner/pulls/34 Co-authored-by: myrmidex <myrmidex@myrmidex.net> Co-committed-by: myrmidex <myrmidex@myrmidex.net>
19 lines
328 B
PHP
19 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();
|
|
}
|
|
}
|