2017-07-31 15:50:48 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Action;
|
|
|
|
|
|
2017-08-18 15:49:19 +02:00
|
|
|
use App\Service\JiraCollectorService;
|
2017-07-31 15:50:48 +02:00
|
|
|
use Interop\Container\ContainerInterface;
|
|
|
|
|
|
|
|
|
|
class KanbanFactory
|
|
|
|
|
{
|
|
|
|
|
public function __invoke(ContainerInterface $container)
|
|
|
|
|
{
|
2017-08-18 15:49:19 +02:00
|
|
|
$dataCollectorService = $container->get(JiraCollectorService::class);
|
2017-07-31 15:50:48 +02:00
|
|
|
return new KanbanAction($dataCollectorService);
|
|
|
|
|
}
|
|
|
|
|
}
|