for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Aist Queue (http://mateuszsitek.com/projects/queue)
*
* @copyright Copyright (c) 2017 DIGITAL WOLVES LTD (http://digitalwolves.ltd) All rights reserved.
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
*/
namespace Aist\Queue\Console\Helper;
use Interop\Container\ContainerInterface;
use SlmQueue\Queue\QueuePluginManager;
* Factory for QueueHelper
class QueueHelperFactory
{
* @param ContainerInterface $container
* @return QueueHelper
public function __invoke(ContainerInterface $container)
return new QueueHelper($container->get(QueuePluginManager::class));
}