Я устанавливаю класс слушателя, где я устанавливаю столбец ownerid для любого prePersist доктрины. Мой файл services.yml выглядит следующим образом ...
services:
my.listener:
class: App\SharedBundle\Listener\EntityListener
arguments: ["@security.context"]
tags:
- { name: doctrine.event_listener, event: prePersist }
и мой класс выглядит так ...
use Doctrine\ORM\Event\LifecycleEventArgs;
use Symfony\Component\Security\Core\SecurityContextInterface;
class EntityListener
{
protected $securityContext;
public function __construct(SecurityContextInterface $securityContext)
{
$this->securityContext = $securityContext;
}
/**
*
* @param LifecycleEventArgs $args
*/
public function prePersist(LifecycleEventArgs $args)
{
$entity = $args->getEntity();
$entityManager = $args->getEntityManager();
$entity->setCreatedby();
}
}
Результатом этого является следующая ошибка.
ServiceCircularReferenceException: обнаружена циклическая ссылка для службы "doctrine.orm.default_entity_manager", путь: "doctrine.orm.default_entity_manager -> doctrine.dbal.default_connection -> my.listener -> security.context -> security.authentication.manager -> fos_user.user_manager ".
Я предполагаю, что контекст безопасности уже был введен где-то в цепочке, но я не знаю, как получить к нему доступ. Есть идеи?