Files
izyim/app/Http/Controllers/Contacts/DeleteContactController.php
T
2019-05-09 12:26:14 +08:00

18 lines
340 B
PHP

<?php
/**
* Created by PhpStorm.
* User: user
* Date: 09/05/2019
* Time: 11:51 AM
*/
namespace App\Http\Controllers\Contacts;
use App\Modules\ControllerLogic\Contacts\DeleteContactLogic;
class DeleteContactController
{
public function destroy(String $id, DeleteContactLogic $logic ){
return $logic->execute($id);
}
}