This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dumbo/vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/SerializedClass.php
2014-11-25 16:42:40 +01:00

73 lines
953 B
PHP

<?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;
}
}