You are here

class TestObject in Zircon Profile 8

Same name in this branch
  1. 8 vendor/doctrine/collections/tests/Doctrine/Tests/Common/Collections/ClosureExpressionVisitorTest.php \Doctrine\Tests\Common\Collections\TestObject
  2. 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php \Doctrine\Tests\Common\Persistence\TestObject
Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php \Doctrine\Tests\Common\Persistence\TestObject

Hierarchy

Expanded class hierarchy of TestObject

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php, line 145

Namespace

Doctrine\Tests\Common\Persistence
View source
class TestObject extends PersistentObject {
  protected $id = 1;
  protected $name = 'beberlei';
  protected $parent;
  protected $children;

}

Members

Namesort descending Modifiers Type Description Overrides
PersistentObject::$cm private property
PersistentObject::$objectManager private static property
PersistentObject::add private function Adds an object to a collection.
PersistentObject::completeOwningSide private function If this is an inverse side association, completes the owning side.
PersistentObject::get private function Gets a persistent field value.
PersistentObject::getObjectManager public static function
PersistentObject::initializeDoctrine private function Initializes Doctrine Metadata for this class.
PersistentObject::injectObjectManager public function Injects the Doctrine Object Manager. Overrides ObjectManagerAware::injectObjectManager
PersistentObject::set private function Sets a persistent fields value.
PersistentObject::setObjectManager public static function Sets the object manager responsible for all persistent object base classes.
PersistentObject::__call public function Magic methods.
TestObject::$children protected property
TestObject::$id protected property
TestObject::$name protected property
TestObject::$parent protected property