Files
izyim/app/Http/Controllers/Contacts/DeleteContactController.php
T
Omair Saleh e203eb08ec large commit
2019-06-03 10:34:49 +08:00

12 lines
256 B
PHP

<?php
namespace App\Http\Controllers\Contacts;
use App\Modules\ControllerLogic\Contacts\DeleteContactLogic;
class DeleteContactController
{
public function destroy(String $id, DeleteContactLogic $logic ){
return $logic->execute($id);
}
}