Chris@14: Chris@14: * Chris@14: * For the full copyright and license information, please view the LICENSE Chris@14: * file that was distributed with this source code. Chris@14: */ Chris@14: Chris@14: namespace Symfony\Component\DependencyInjection\Loader\Configurator; Chris@14: Chris@14: use Symfony\Component\DependencyInjection\Alias; Chris@14: Chris@14: /** Chris@14: * @author Nicolas Grekas
Chris@14: */ Chris@14: class AliasConfigurator extends AbstractServiceConfigurator Chris@14: { Chris@14: const FACTORY = 'alias'; Chris@14: Chris@14: use Traits\PublicTrait; Chris@14: Chris@14: public function __construct(ServicesConfigurator $parent, Alias $alias) Chris@14: { Chris@14: $this->parent = $parent; Chris@14: $this->definition = $alias; Chris@14: } Chris@14: }