12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
-
- namespace Tree\Fixture;
-
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
-
-
- class Node extends BaseNode
- {
-
-
- private $title;
-
-
-
- private $slug;
-
- public function getSlug()
- {
- return $this->slug;
- }
-
- public function setTitle($title)
- {
- $this->title = $title;
- }
-
- public function getTitle()
- {
- return $this->title;
- }
- }
|