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