Payum – PaymentDetails – объект в выполненном действии, где

im on done aciton и не знаю, как получить объект PaymentDetails …

здесь находится руководство: http://payum.forma-dev.com/documentation/0.8/PayumBundle/purchase_done_action

Я пытаюсь получить объект PaymentDetails с шага до http://payum.forma-dev.com/documentation/0.8/PayumBundle/simple_purchase_examples/paypal_express_checkout

Update1

public function doneAction(){ $request = $this->getRequest(); /** * @var $token PayumSecurityToken */ $token = $this->get('payum.security.http_request_verifier')->verify($request); /** * @var $details PaymentDetails */ $details = $token->getDetails(); var_dump($details); 

дайте

 object(Payum\Core\Model\Identificator)[345] protected 'class' => string 'ed\partnerBundle\Entity\PaymentDetails' (length=38) protected 'id' => int 1 

UPDATE2

  $details = unserialize($token->getDetails()); ContextErrorException: Notice: unserialize(): Error at offset 0 of 40 bytes in /home/grek/public_html/edpartner/src/ed/partnerBundle/Controller/PaymentController.php line 110 

Solutions Collecting From Web of "Payum – PaymentDetails – объект в выполненном действии, где"