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