for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace KGzocha\Bundle\SearcherBundle\DependencyInjection\CompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
/**
* @author Krzysztof Gzocha <[email protected]>
*/
class CellCollectionCompilerPass extends AbstractChainsCompilerPass
{
const CELL_COLLECTION = 'cell_collection';
* @inheritDoc
protected function processParam(
$contextId,
array &$paramConfig,
ContainerBuilder $container
) {
$this->buildDefinition(
$container,
$this->buildChainServiceName(
self::CELL_COLLECTION
),
$paramConfig[self::CELL_COLLECTION]
);
}