for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheAentMachine\AentDockerCompose\Command\Exception;
class PayloadException extends EventCommandException
{
/**
* @param string $event
* @return PayloadException
*/
public static function emptyPayload(string $event): PayloadException
return new self('payload missing for the event : ' . $event);
}