for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheAentMachine\Aent\Event;
final class VoidEvent extends AbstractEvent
{
/**
* @return void
*/
protected function configure()
parent::configure();
$this->setHidden(true);
}
* @return string
protected function getEventName(): string
return 'VOID';
* @return bool
protected function shouldRegisterEvents(): bool
return false;
protected function beforeExecute(): void
// Let's do nothing.
* @param null|string $payload
* @return null|string
protected function executeEvent(?string $payload): ?string
return null;
protected function afterExecute(): void