class TestObject in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/doctrine/collections/tests/Doctrine/Tests/Common/Collections/ClosureExpressionVisitorTest.php \Doctrine\Tests\Common\Collections\TestObject
- 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php \Doctrine\Tests\Common\Persistence\TestObject
Same name and namespace in other branches
- 8 vendor/doctrine/collections/tests/Doctrine/Tests/Common/Collections/ClosureExpressionVisitorTest.php \Doctrine\Tests\Common\Collections\TestObject
Hierarchy
- class \Doctrine\Tests\Common\Collections\TestObject
Expanded class hierarchy of TestObject
File
- vendor/
doctrine/ collections/ tests/ Doctrine/ Tests/ Common/ Collections/ ClosureExpressionVisitorTest.php, line 213
Namespace
Doctrine\Tests\Common\CollectionsView source
class TestObject {
private $foo;
private $bar;
private $baz;
private $qux;
public function __construct($foo = null, $bar = null, $baz = null, $qux = null) {
$this->foo = $foo;
$this->bar = $bar;
$this->baz = $baz;
$this->qux = $qux;
}
public function __call($name, $arguments) {
if ('getqux' === $name) {
return $this->qux;
}
}
public function getFoo() {
return $this->foo;
}
public function getBar() {
return $this->bar;
}
public function isBaz() {
return $this->baz;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TestObject:: |
private | property | ||
TestObject:: |
private | property | ||
TestObject:: |
private | property | ||
TestObject:: |
private | property | ||
TestObject:: |
public | function | ||
TestObject:: |
public | function | ||
TestObject:: |
public | function | ||
TestObject:: |
public | function | ||
TestObject:: |
public | function |