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