at the end of the day, it was inevitable

This commit is contained in:
Mo Elzubeir
2022-12-09 08:36:26 -06:00
commit 1218570914
1768 changed files with 887087 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace CacheBundle;
use CacheBundle\DependencyInjection\Compiler\CollectFeedFetchersCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
/**
* Class CacheBundle
* @package CacheBundle
*/
class CacheBundle extends Bundle
{
/**
* Builds the bundle.
*
* It is only ever called once when the cache is empty.
*
* @param ContainerBuilder $container A ContainerBuilder instance.
*
* @return void
*/
public function build(ContainerBuilder $container)
{
$container->addCompilerPass(new CollectFeedFetchersCompilerPass());
}
}