<?php
namespace App;
use ReflectionClass;
/**
* Abstract event class
*/
abstract class Event
{
/**
* Returns the short name of the child class.
*
* @return string
*/
public function getName() : string
{
return (new ReflectionClass($this))->getShortName();
}
}
|