En AppKernel.php esta:
Código PHP:
<?php
use SymfonyComponentHttpKernelKernel;
use SymfonyComponentConfigLoaderLoaderInterface;
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
new SistemaCiudadBundleCiudadBundle(),
new SistemaVehiculoBundleVehiculoBundle(),
Este es el codigo de Ciudad, el cual si funciona perfecto, con generate:entity y todo:
Código:
$ ll src/Sistema/CiudadBundle/Entity/Ciudad.php
-rw-r--r-- 1 mge www-data 3438 abr 28 15:13 src/Sistema/CiudadBundle/Entity/Ciudad.php
Código PHP:
Ver original<?php
namespace Sistema\CiudadBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="ch_ciudad")
*/
class Ciudad
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue
*/
protected $id;
/** @ORM\Column(type="string", length=50, unique=true)*/
protected $nombre;
/** @ORM\Column(type="string", length=55, unique=true)*/
protected $slug;
/** @ORM\Column(type="string", length=12)*/
protected $codigoPostal;
/** @ORM\Column(type="integer")*/
protected $codigoArea;
/** @ORM\Column(type="datetime")*/
protected $alta;
/** @ORM\Column(type="datetime")*/
protected $baja;
/** @ORM\Column(type="boolean")*/
protected $activo;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set nombre
*
* @param string $nombre
* @return Ciudad
*/
public function setNombre($nombre)
{
$this->nombre = $nombre;
return $this;
}
/**
* Get nombre
*
* @return string
*/
public function getNombre()
{
return $this->nombre;
}
/**
* Set slug
*
* @param string $slug
* @return Ciudad
*/
public function setSlug($slug)
{
$this->slug = $slug;
return $this;
}
/**
* Get slug
*
* @return string
*/
public function getSlug()
{
return $this->slug;
}
/**
* Set codigoPostal
*
* @param string $codigoPostal
* @return Ciudad
*/
public function setCodigoPostal($codigoPostal)
{
$this->codigoPostal = $codigoPostal;
return $this;
}
/**
* Get codigoPostal
*
* @return string
*/
public function getCodigoPostal()
{
return $this->codigoPostal;
}
/**
* Set codigoArea
*
* @param integer $codigoArea
* @return Ciudad
*/
public function setCodigoArea($codigoArea)
{
$this->codigoArea = $codigoArea;
return $this;
}
/**
* Get codigoArea
*
* @return integer
*/
public function getCodigoArea()
{
return $this->codigoArea;
}
/**
* Set alta
*
* @param \datetime $alta
* @return Ciudad
*/
public function setAlta($alta)
{
$this->alta = $alta;
return $this;
}
/**
* Get alta
*
* @return \datetime
*/
public function getAlta()
{
return $this->alta;
}
/**
* Set baja
*
* @param \datetime $baja
* @return Ciudad
*/
public function setBaja($baja)
{
$this->baja = $baja;
return $this;
}
/**
* Get baja
*
* @return \datetime
*/
public function getBaja()
{
return $this->baja;
}
/**
* Set activo
*
* @param boolean $activo
* @return Ciudad
*/
public function setActivo($activo)
{
$this->activo = $activo;
return $this;
}
/**
* Get activo
*
* @return boolean
*/
public function getActivo()
{
return $this->activo;
}
/**
* echo Class
* @return string Nombre
*/
public function __toString()
{
return $this->getNombre();
}
}