2022-05-28 17:03:58 -04:00

11 lines
205 B
PHP

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