123456789101112131415161718192021222324252627282930313233343536 |
- <?php
-
- namespace Tree\Fixture;
-
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
-
-
- class ANode
- {
-
-
- private $id;
-
-
-
- private $lft;
-
-
-
- private $rgt;
-
- public function getId()
- {
- return $this->id;
- }
- }
|