tikiwiki/packages/tiki-pkg-tikimanager/symfony/dependency-injection/Tests/Fixtures/ConstructNotExists.php
2023-11-20 20:52:04 +00:00

11 lines
165 B
PHP
Executable File

<?php
namespace Symfony\Component\DependencyInjection\Tests\Fixtures;
class ConstructNotExists
{
public function __construct(NotExist $notExist)
{
}
}