src/AppBundle/Entity/Pais.php line 13
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Pais
*
* @ORM\Table(name="pais")
* @ORM\Entity(repositoryClass="AppBundle\Repository\PaisRepository")
*/
class Pais
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="nombre", type="string")
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $nombre;
/**
* @ORM\ManyToMany(targetEntity="Familia", mappedBy="pais", cascade={"persist"})
*/
protected $familias;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set nombre
*
* @param string $nombre
*
* @return Pais
*/
public function setNombre($nombre)
{
$this->nombre = $nombre;
return $this;
}
/**
* Get nombre
*
* @return string
*/
public function getNombre()
{
return $this->nombre;
}
}