* cache refresh extended to jcat and streams

This commit is contained in:
Dávid Danyi
2017-03-30 16:04:07 +02:00
parent 68e66ddedf
commit 47efbfecc4
4 changed files with 15 additions and 24 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Command;
use App\Service\CiExecutorService;
use Interop\Container\ContainerInterface;
class UpdateCacheCommandFactory
{
public function __invoke(ContainerInterface $container)
{
/** @var CiExecutorService $ciExecutorService */
$ciExecutorService = $container->get(CiExecutorService::class);
return new UpdateCacheCommand($ciExecutorService);
}
}