11 lines
175 B
PHP
11 lines
175 B
PHP
|
<?php
|
||
|
|
||
|
namespace Symfony\Component\DependencyInjection\Tests\Fixtures\Container;
|
||
|
|
||
|
class ConstructorWithoutArgumentsContainer
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
}
|
||
|
}
|