You are here

class SerializedClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/SerializedClass.php \Doctrine\Tests\Common\Proxy\SerializedClass

Test asset class

Hierarchy

Expanded class hierarchy of SerializedClass

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/SerializedClass.php, line 8

Namespace

Doctrine\Tests\Common\Proxy
View source
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;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
SerializedClass::$bar protected property
SerializedClass::$baz public property
SerializedClass::$foo private property
SerializedClass::getBar public function
SerializedClass::getBaz public function
SerializedClass::getFoo public function
SerializedClass::setBar public function
SerializedClass::setBaz public function
SerializedClass::setFoo public function