X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fdependency-injection%2FTests%2FFixtures%2FSimilarArgumentsDummy.php;fp=vendor%2Fsymfony%2Fdependency-injection%2FTests%2FFixtures%2FSimilarArgumentsDummy.php;h=2600389bdd6a7eea3dc20d4440ca5980a47b152b;hp=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/symfony/dependency-injection/Tests/Fixtures/SimilarArgumentsDummy.php b/vendor/symfony/dependency-injection/Tests/Fixtures/SimilarArgumentsDummy.php new file mode 100644 index 000000000..2600389bd --- /dev/null +++ b/vendor/symfony/dependency-injection/Tests/Fixtures/SimilarArgumentsDummy.php @@ -0,0 +1,24 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\DependencyInjection\Tests\Fixtures; + +class SimilarArgumentsDummy +{ + public $class1; + public $class2; + + public function __construct(CaseSensitiveClass $class1, $token, CaseSensitiveClass $class2) + { + $this->class1 = $class1; + $this->class2 = $class2; + } +}