mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 12:24:11 +00:00
12 lines
256 B
PHP
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);
|
|
}
|
|
} |