* kanban service and stuff

This commit is contained in:
Dávid Danyi
2018-04-21 15:23:06 +02:00
parent b0295227bc
commit a43b5e9d09
25 changed files with 2071 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
<?php
declare(strict_types=1);
namespace App\Handler;
use App\Service\JiraCollectorService;
use Interop\Container\ContainerInterface;
class KanbanHandlerFactory
{
/**
* @param ContainerInterface $container
* @return KanbanHandler
*/
public function __invoke(ContainerInterface $container)
{
/** @var JiraCollectorService $dataCollectorService */
$dataCollectorService = $container->get(JiraCollectorService::class);
return new KanbanHandler($dataCollectorService);
}
}