Symfony2 – ErrorException: Notice: serialize() [function.serialize]: “xxx” returned as member variable from __sleep() but does not exist in …

Al guardar una entidad de Doctrine2 en la sesión bajo un proyecto Symfony2 me apareció este error:

ErrorException: Notice: serialize() [function.serialize]: "entity_property" returned as member variable from __sleep() but does not exist in ...vendor/symfony/symfony/src/Symfony/Component/HttpKernel/DataCollector/DataCollector.php line 27

Este error estaba apareciendo porque mi propiedad “entity_property” estaba declarada como private y PHP tiene algunos problemas al serializar objetos que heredan de alguna clase con propiedades privadas. Con solo cambiar la declaración a protected (tal y como debería haber estado siempre…) el error desapareció.

Ref: http://blog.geertvd.be/2011/09/25/symfony2-id-returned-as-member-variable-from-__sleep-but-does-not-exist

Tal vez también te guste

Arreglar “Cannot redeclare class Symfony\…” en Symfony2 después de actualizar
After upgrading from Symfony 2.2 to 2.3 I got this error in my application: Fatal error: Cannot redeclare...
Solucionar “mongodb cannot be built while v8 is active” en MacPorts
While updating all the ports of macports I got this error: ---> Configuring mongodb Error: mongodb...
Usar el php de MacPorts desde la línea de comandos
Some time ago I had installed Apache+MySQL using MacPorts in Mac OS X. It was all OK as long as I used...
Exponer de forma global valores de config.yml en las plantillas de Twig en aplicaciones Symfony2
Lets suppose you have created a bundle that has some specific configuration in the config.yml file (this...
Dejar un comentario?

0 Comentarios.

Deje un comentario