* initial commit
This commit is contained in:
17
src/App/Action/DbgFactory.php
Normal file
17
src/App/Action/DbgFactory.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Action;
|
||||
|
||||
use App\Service\JiraCollectorService;
|
||||
use Interop\Container\ContainerInterface;
|
||||
|
||||
class DbgFactory
|
||||
{
|
||||
public function __invoke(ContainerInterface $container)
|
||||
{
|
||||
/** @var JiraCollectorService $jiraCollectorService */
|
||||
$jiraCollectorService = $container->get(JiraCollectorService::class);
|
||||
|
||||
return new DbgAction($jiraCollectorService);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user