src/Entity/Conformity.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Mapping\Annotation as Gedmo;
  5. use Gedmo\Translatable\Translatable;
  6. /**
  7.  * Conformity
  8.  *
  9.  * @ORM\Table(name="conformity", uniqueConstraints={@ORM\UniqueConstraint(name="conformity_id_uindex", columns={"id"})})
  10.  * @ORM\Entity
  11.  */
  12. class Conformity
  13. {
  14.     /**
  15.      * @var integer
  16.      *
  17.      * @ORM\Column(name="id", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="IDENTITY")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @var string
  24.      *
  25.      * @ORM\Column(name="libelle", type="string", length=255, nullable=true)
  26.      * @Gedmo\Translatable
  27.      */
  28.     private $libelle;
  29.     /**
  30.      * @return int
  31.      */
  32.     public function getId()
  33.     {
  34.         return $this->id;
  35.     }
  36.     /**
  37.      * @param int $id
  38.      */
  39.     public function setId($id)
  40.     {
  41.         $this->id $id;
  42.     }
  43.     /**
  44.      * @return string
  45.      */
  46.     public function getLibelle()
  47.     {
  48.         return $this->libelle;
  49.     }
  50.     /**
  51.      * @param string $libelle
  52.      */
  53.     public function setLibelle($libelle)
  54.     {
  55.         $this->libelle $libelle;
  56.     }
  57.     public function __toString()
  58.     {
  59.         // TODO: Implement __toString() method.
  60.         return $this->getLibelle();
  61.     }
  62. }