for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Jellyfish\Queue;
class MessageFactory implements MessageFactoryInterface
{
/**
* @return \Jellyfish\Queue\MessageInterface
*/
public function create(): MessageInterface
return new Message();
}