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