9 lines
142 B
PHP
9 lines
142 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Modules\Movies\Services\Contracts;
|
||
|
|
|
||
|
|
interface DeleteMovieServiceInterface
|
||
|
|
{
|
||
|
|
public function handle(int $id): void;
|
||
|
|
}
|