Skip to content

Commit 134468a

Browse files
committed
Reverting issue
1 parent 7cac21a commit 134468a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/Command/CacheFlushCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protected function configure()
3737
*/
3838
protected function execute(InputInterface $input, OutputInterface $output)
3939
{
40-
$serviceName = sprintf('aequasi_cache.instance.%s.bridge', $input->getArgument('instance'));
40+
$serviceName = sprintf('aequasi_cache.instance.%s', $input->getArgument('instance'));
4141

4242
/** @var CacheItemPoolInterface $service */
4343
$service = $this->getContainer()->get($serviceName);

Diff for: src/DependencyInjection/Compiler/RouterCompilerPass.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ protected function prepare()
3232

3333
$def = $this->container->findDefinition('router');
3434
$def->setClass('Aequasi\Bundle\CacheBundle\Routing\Router');
35-
$def->addMethodCall('setCache', [new Reference(sprintf('aequasi_cache.instance.%s.bridge', $instance))]);
35+
$def->addMethodCall('setCache', [new Reference(sprintf('aequasi_cache.instance.%s', $instance))]);
3636
}
3737
}

0 commit comments

Comments
 (0)