for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Suricate;
class Event
{
/**
* @const string
*/
const EVENT_TYPE = '';
public static function getEventType(): string
return static::EVENT_TYPE;
}