2600389bdd6a7eea3dc20d4440ca5980a47b152b
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / SimilarArgumentsDummy.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\DependencyInjection\Tests\Fixtures;
13
14 class SimilarArgumentsDummy
15 {
16     public $class1;
17     public $class2;
18
19     public function __construct(CaseSensitiveClass $class1, $token, CaseSensitiveClass $class2)
20     {
21         $this->class1 = $class1;
22         $this->class2 = $class2;
23     }
24 }