Si lo tengo de esta manera:
Cita:
Iniciado por anacona16 Esta es la entidad:
Código PHP:
Ver original<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* DetalleGrupo
*
* @ORM\Table(name="tb_productos")
* @ORM\Entity(repositoryClass="AppBundle\Repository\ProductoRepository")
* @ORM\EntityListeners({"AppBundle\EntityListeners\ProductoListener"})
*/
class Producto
{
/**
* @var integer
*
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="bigint")
*/
private $id;
/**
* @var string
*
* @ORM\Column(type="string", length=100, nullable=false)
*/
private $nombre;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set nombre
*
* @param string $nombre
* @return Colegio
*/
public function setNombre($nombre)
{
$this->nombre = $nombre;
return $this;
}
/**
* Get nombre
*
* @return string
*/
public function getNombre()
{
return $this->nombre;
}
}
Y esta es la clase listener:
Código PHP:
Ver original<?php
namespace AppBundle\EntityListeners;
use AppBundle\Entity\Producto;
use Doctrine\Common\Persistence\Event\LifecycleEventArgs;
class ProductoListener
{
public function postPersist(Producto $producto, LifecycleEventArgs $lifecycleEventArgs) {
ldd($producto->getId());
}
}
Sin ningun service, te funciona?