У меня небольшая проблема с сериализацией объекта с помощью Symfony Messenger Envelope.Я использую https://symfony.com/doc/current/components/messenger.html#adding-metadata-to-messages-envelopes этот пример, и все еще у меня есть ошибка как это:
A circular reference has been detected when serializing the object of class "App\Entity\Order\Order" (configured limit: 1)
диспетчеризация:
$this->messageBus->dispatch(
(new Envelope(
new SmsVerificationSuccess($order))))->with(
new SerializerStamp([
'groups' => ['no_relations'],
])
);
Любые идеи?