X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fdependency-injection%2FTests%2FFixtures%2Fincludes%2Ffoo.php;fp=vendor%2Fsymfony%2Fdependency-injection%2FTests%2FFixtures%2Fincludes%2Ffoo.php;h=bcb4e20a94afdcb339d266e61316a503909eb4c5;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/vendor/symfony/dependency-injection/Tests/Fixtures/includes/foo.php b/vendor/symfony/dependency-injection/Tests/Fixtures/includes/foo.php new file mode 100644 index 000000000..bcb4e20a9 --- /dev/null +++ b/vendor/symfony/dependency-injection/Tests/Fixtures/includes/foo.php @@ -0,0 +1,43 @@ +arguments = $arguments; + } + + public static function getInstance($arguments = array()) + { + $obj = new self($arguments); + $obj->called = true; + + return $obj; + } + + public function initialize() + { + $this->initialized = true; + } + + public function configure() + { + $this->configured = true; + } + + public function setBar($value = null) + { + $this->bar = $value; + } +}