28 lines
507 B
PHP
Executable File
28 lines
507 B
PHP
Executable File
<?php
|
|
|
|
namespace Symfony\Component\DependencyInjection\Tests\Fixtures;
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
/**
|
|
* @author Kévin Dunglas <dunglas@gmail.com>
|
|
*/
|
|
class NamedArgumentsDummy
|
|
{
|
|
public function __construct(CaseSensitiveClass $c, $apiKey, $hostName, ContainerInterface $container, iterable $objects)
|
|
{
|
|
}
|
|
|
|
public function setApiKey($apiKey)
|
|
{
|
|
}
|
|
|
|
public function setSensitiveClass(CaseSensitiveClass $c)
|
|
{
|
|
}
|
|
|
|
public function setAnotherC($c)
|
|
{
|
|
}
|
|
}
|