for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jellyfish\Event;
class EventFactory implements EventFactoryInterface
{
/**
* @return \Jellyfish\Event\EventInterface
*/
public function create(): EventInterface
return new Event();
}