for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AramisAuto\EmailController\MessageStrategy;
use AramisAuto\EmailController\Event\MessageEvent;
class NullMessageStrategy extends AbstractMessageStrategy
{
public function execute()
$event = new MessageEvent($this->getMessage());
$this->getEventDispatcher()->dispatch($this->success(), $event);
}