open-orchestra/open-orchestra-mongo-libs

View on GitHub
MongoBundle/DependencyInjection/Compiler/FilterTypePaginationCompilerPass.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\MongoBundle\DependencyInjection\Compiler;

use OpenOrchestra\BaseBundle\DependencyInjection\Compiler\AbstractTaggedCompiler;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;

/**
 * Class FilterTypePaginationCompilerPass
 */
class FilterTypePaginationCompilerPass extends AbstractTaggedCompiler implements CompilerPassInterface
{
    /**
     * You can modify the container here before it is dumped to PHP code.
     *
     * @param ContainerBuilder $container
     *
     * @api
     */
    public function process(ContainerBuilder $container)
    {
        $managerName = 'open_orchestra_pagination.filter_type.manager';
        $tagName = 'open_orchestra_pagination.filter_type.strategy';

        $this->addStrategyToManager($container, $managerName, $tagName);
    }
}