12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
-
- namespace Tree\Fixture;
-
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
-
-
- class BaseNode extends ANode
- {
-
-
- private $parent;
-
-
-
- private $children;
-
-
-
- private $created;
-
-
-
- private $identifier;
-
-
-
- private $updated;
-
- public function getCreated()
- {
- return $this->created;
- }
-
- public function getUpdated()
- {
- return $this->updated;
- }
-
- public function setParent($parent = null)
- {
- $this->parent = $parent;
- }
-
- public function getChildren()
- {
- return $this->children;
- }
-
- public function getParent()
- {
- return $this->parent;
- }
-
- public function getIdentifier()
- {
- return $this->identifier;
- }
-
- public function setIdentifier($identifier)
- {
- $this->identifier = $identifier;
- }
- }
|