* initial commit

This commit is contained in:
Dávid Danyi
2017-02-17 15:48:05 +01:00
commit ed29fb7f97
48 changed files with 6008 additions and 0 deletions

View 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);
}
}