taurus-api/src/App/Action/KanbanFactory.php
Dávid Danyi 1ab6691827 * avatar overrides added
* cli commands framework added
* labinfo service for lab temp monitoring
* kanban entry label support
2017-08-18 15:49:19 +02:00

16 lines
341 B
PHP

<?php
namespace App\Action;
use App\Service\JiraCollectorService;
use Interop\Container\ContainerInterface;
class KanbanFactory
{
public function __invoke(ContainerInterface $container)
{
$dataCollectorService = $container->get(JiraCollectorService::class);
return new KanbanAction($dataCollectorService);
}
}