src/Entity/Term/Domain.php line 21

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: erwan
  5.  * Date: 5/25/16
  6.  * Time: 10:14 AM.
  7.  */
  8. namespace App\Entity\Term;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use App\Entity\Term\AbstractTerm;
  11. use App\Entity\Term\VocabularyInterface;
  12. /**
  13.  * Type de personnel.
  14.  *
  15.  * @ORM\Table(name="domain")
  16.  * @ORM\Entity
  17.  */
  18. class Domain extends AbstractTerm implements VocabularyInterface
  19. {
  20.     public static function getVocabularyStatus()
  21.     {
  22.         return VocabularyInterface::VOCABULARY_NATIONAL;
  23.     }
  24.     /**
  25.      * @return string
  26.      */
  27.     public function getVocabularyName()
  28.     {
  29.         return 'Nom de domaine';
  30.     }
  31. }