for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Gerard van Helden <[email protected]>
* @copyright Zicht Online <http://zicht.nl>
*/
namespace Zicht\Bundle\UrlBundle\DependencyInjection\Compiler;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
* Originally replaced the regular provider with a decorating one.
*
* @see ZichtUrlExtension::load
* @deprecated Should no longer be used. Remains here for BC.
class ReplaceUrlProviderServicePass implements CompilerPassInterface
{
* @{inheritDoc}
public function process(ContainerBuilder $container)
// TODO This is here for BC, to be removed whenever the BC for the ProviderDecorator for aliasing is removed.
$container->setAlias('zicht_url.provider.real', 'zicht_url.provider.delegator');
}