123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- namespace Doctrine\Tests\Common\Proxy;
- /**
- * Test asset class
- */
- class SerializedClass
- {
- /**
- * @var mixed
- */
- private $foo = 'foo';
- /**
- * @var mixed
- */
- protected $bar = 'bar';
- /**
- * @var mixed
- */
- public $baz = 'baz';
- /**
- * @param mixed $foo
- */
- public function setFoo($foo)
- {
- $this->foo = $foo;
- }
- /**
- * @return mixed|string
- */
- public function getFoo()
- {
- return $this->foo;
- }
- /**
- * @param $bar
- */
- public function setBar($bar)
- {
- $this->bar = $bar;
- }
- /**
- * @return mixed|string
- */
- public function getBar()
- {
- return $this->bar;
- }
- /**
- * @param $baz
- */
- public function setBaz($baz)
- {
- $this->baz = $baz;
- }
- /**
- * @return mixed|string
- */
- public function getBaz()
- {
- return $this->baz;
- }
- }
|