Actually I've generated my entity Ticket from console with the next command:
php app/console doctrine:generate:entity
And it has generated the entity correctly with the respective getters and setters.
namespace RelacionesBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Ticket
*
* @ORM\Table(name="ticket")
* @ORM\Entity(repositoryClass="RelacionesBundle\Repository\TicketRepository")
*/
class Ticket
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="name", type="string", length=255)
*/
private $name;
/**
* @var string
*
* @ORM\Column(name="description", type="string", length=255)
*/
private $description;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set name
*
* @param string $name
*
* @return Ticket
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Set description
*
* @param string $description
*
* @return Ticket
*/
public function setDescription($description)
{
$this->description = $description;
return $this;
}
/**
* Get description
*
* @return string
*/
public function getDescription()
{
return $this->description;
}
}
The problem is when I edit the entity adding another property:
/**
* @var string
*
* @ORM\Column(name="explanation", type="string", length=150)
*/
private $explanation;
When I enter the following command:
php app/console doctrine:generate:entities RelacionesBundle/Entity/Ticket
I get this error:
Class "RelacionesBundle\Entity\Ticket" is not a valid entity or mapped super class.
Any Advice? or what is wrong?