11 lines
205 B
PHP
Executable File
11 lines
205 B
PHP
Executable File
<?php
|
|
|
|
namespace Symfony\Component\DependencyInjection\Tests\Fixtures\Container;
|
|
|
|
class ConstructorWithOptionalArgumentsContainer
|
|
{
|
|
public function __construct($optionalArgument = 'foo')
|
|
{
|
|
}
|
|
}
|