Send an email when a server is marked as installed (#1213)

Co-authored-by: @stanjg
This commit is contained in:
Stan 2018-07-01 23:34:40 +02:00 committed by Dane Everitt
parent c42605e495
commit 1ffb5acfad
7 changed files with 141 additions and 1 deletions

View file

@ -0,0 +1,15 @@
<?php
namespace Pterodactyl\Contracts\Core;
use Pterodactyl\Events\Event;
interface ReceivesEvents
{
/**
* Handles receiving an event from the application.
*
* @param \Pterodactyl\Events\Event $notification
*/
public function handle(Event $notification): void;
}