Files
mareike/app/Domains/Budget/Actions/DeleteEstimate/DeleteEstimateAction.php
T
2026-05-26 18:12:42 +02:00

17 lines
392 B
PHP

<?php
namespace App\Domains\Budget\Actions\DeleteEstimate;
class DeleteEstimateAction {
public function __construct(private DeleteEstimateRequest $request) {
}
public function execute() : DeleteEstimateResponse {
$response = new DeleteEstimateResponse();
$this->request->estimate->delete();
$response->success = true;
return $response;
}
}