class TestObject

Hierarchy

  • class \Doctrine\Tests\Common\Collections\TestObject

Expanded class hierarchy of TestObject

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Collections/ClosureExpressionVisitorTest.php, line 177

Namespace

Doctrine\Tests\Common\Collections
View source
class TestObject {
  private $foo;
  private $bar;
  public function __construct($foo = null, $bar = null) {
    $this->foo = $foo;
    $this->bar = $bar;
  }
  public function getFoo() {
    return $this->foo;
  }
  public function getBar() {
    return $this->bar;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
TestObject::$bar private property
TestObject::$foo private property
TestObject::getBar public function
TestObject::getFoo public function
TestObject::__construct public function