src/Entity/RecruitmentWiki.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity
  6.  */
  7. class RecruitmentWiki extends Wiki
  8. {
  9.     public function __construct()
  10.     {
  11.         parent::__construct();
  12.     }
  13.     public function getCategory()
  14.     {
  15.         return 'Offre emploi';
  16.     }
  17. }