Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- <?php
-
- namespace Lc\SovBundle\Doctrine\Extension;
-
- interface TreeInterface
- {
- /**
- * Retourne le parent d'une entité
- *
- * @return entity
- */
- public function getParent();
-
-
- /**
- * Retourne les enfants d'une entité
- *
- * @return entity
- */
-
- public function getChildrens();
- }
|