src/AppBundle/Entity/FeatureFlag.php line 11

  1. <?php
  2. namespace AppBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Table(name="feature_flag")
  6.  * @ORM\Entity(repositoryClass="AppBundle\Repository\FeatureFlagRepository")
  7.  */
  8. class FeatureFlag
  9. {
  10.     /**
  11.      * @var int
  12.      *
  13.      * @ORM\Column(name="id", type="integer")
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue(strategy="AUTO")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @var string
  20.      *
  21.      * @ORM\Column(name="nombre", type="string", length=255, unique=true)
  22.      */
  23.     private $nombre;
  24.     /**
  25.      * @var string
  26.      *
  27.      * @ORM\Column(name="descripcion", type="text")
  28.      */
  29.     private $descripcion;
  30.     /**
  31.      * @var bool
  32.      *
  33.      * @ORM\Column(name="activa", type="boolean")
  34.      */
  35.     private $activa;
  36.     /**
  37.      * Get the value of id
  38.      *
  39.      * @return  int
  40.      */ 
  41.     public function getId()
  42.     {
  43.         return $this->id;
  44.     }
  45.     /**
  46.      * Set the value of id
  47.      *
  48.      * @param  int  $id
  49.      *
  50.      * @return  self
  51.      */ 
  52.     public function setId(int $id)
  53.     {
  54.         $this->id $id;
  55.         return $this;
  56.     }
  57.     /**
  58.      * Get the value of nombre
  59.      *
  60.      * @return  string
  61.      */ 
  62.     public function getNombre()
  63.     {
  64.         return $this->nombre;
  65.     }
  66.     /**
  67.      * Set the value of nombre
  68.      *
  69.      * @param  string  $nombre
  70.      *
  71.      * @return  self
  72.      */ 
  73.     public function setNombre(string $nombre)
  74.     {
  75.         $this->nombre $nombre;
  76.         return $this;
  77.     }
  78.     /**
  79.      * Get the value of descripcion
  80.      *
  81.      * @return  string
  82.      */ 
  83.     public function getDescripcion()
  84.     {
  85.         return $this->descripcion;
  86.     }
  87.     /**
  88.      * Set the value of descripcion
  89.      *
  90.      * @param  string  $descripcion
  91.      *
  92.      * @return  self
  93.      */ 
  94.     public function setDescripcion(string $descripcion)
  95.     {
  96.         $this->descripcion $descripcion;
  97.         return $this;
  98.     }
  99.     /**
  100.      * Get the value of activa
  101.      *
  102.      * @return  bool
  103.      */ 
  104.     public function isActiva()
  105.     {
  106.         return $this->activa;
  107.     }
  108.     /**
  109.      * Get the value of activa
  110.      *
  111.      * @return  bool
  112.      */ 
  113.     public function getActiva()
  114.     {
  115.         return $this->isActiva();
  116.     }
  117.     /**
  118.      * Set the value of activa
  119.      *
  120.      * @param  bool  $activa
  121.      *
  122.      * @return  self
  123.      */ 
  124.     public function setActiva(bool $activa)
  125.     {
  126.         $this->activa $activa;
  127.         return $this;
  128.     }
  129. }