* cli commands framework added * labinfo service for lab temp monitoring * kanban entry label support
16 lines
341 B
PHP
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);
|
|
}
|
|
}
|