Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / config / services_autoconfigure_with_parent.php
1 <?php
2
3 namespace Symfony\Component\DependencyInjection\Loader\Configurator;
4
5 return function (ContainerConfigurator $c) {
6     $c->services()
7         ->set('parent_service', \stdClass::class)
8         ->set('child_service')->parent('parent_service')->autoconfigure(true);
9 };