Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / Container / ConstructorWithOptionalArgumentsContainer.php
1 <?php
2
3 namespace Symfony\Component\DependencyInjection\Tests\Fixtures\Container;
4
5 class ConstructorWithOptionalArgumentsContainer
6 {
7     public function __construct($optionalArgument = 'foo')
8     {
9     }
10 }