2024-03-12 22:39:16 -04:00

11 lines
197 B
PHP

<?php
namespace App\Extensions\Illuminate\Events\Contracts;
use Illuminate\Contracts\Events\Dispatcher;
interface SubscribesToEvents
{
public function subscribe(Dispatcher $events): void;
}