src/AppBundle/Entity/FeatureFlag.php line 11
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="feature_flag")
* @ORM\Entity(repositoryClass="AppBundle\Repository\FeatureFlagRepository")
*/
class FeatureFlag
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="nombre", type="string", length=255, unique=true)
*/
private $nombre;
/**
* @var string
*
* @ORM\Column(name="descripcion", type="text")
*/
private $descripcion;
/**
* @var bool
*
* @ORM\Column(name="activa", type="boolean")
*/
private $activa;
/**
* Get the value of id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set the value of id
*
* @param int $id
*
* @return self
*/
public function setId(int $id)
{
$this->id = $id;
return $this;
}
/**
* Get the value of nombre
*
* @return string
*/
public function getNombre()
{
return $this->nombre;
}
/**
* Set the value of nombre
*
* @param string $nombre
*
* @return self
*/
public function setNombre(string $nombre)
{
$this->nombre = $nombre;
return $this;
}
/**
* Get the value of descripcion
*
* @return string
*/
public function getDescripcion()
{
return $this->descripcion;
}
/**
* Set the value of descripcion
*
* @param string $descripcion
*
* @return self
*/
public function setDescripcion(string $descripcion)
{
$this->descripcion = $descripcion;
return $this;
}
/**
* Get the value of activa
*
* @return bool
*/
public function isActiva()
{
return $this->activa;
}
/**
* Get the value of activa
*
* @return bool
*/
public function getActiva()
{
return $this->isActiva();
}
/**
* Set the value of activa
*
* @param bool $activa
*
* @return self
*/
public function setActiva(bool $activa)
{
$this->activa = $activa;
return $this;
}
}