From cc59161beafb137937bdb52317107a9ecc2088e5 Mon Sep 17 00:00:00 2001 From: jwage Date: Sat, 20 Jun 2009 13:56:46 +0000 Subject: [PATCH] [2.0] Adding missing _platform property --- lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php b/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php index 3c99d3538..a2a1fb0c7 100644 --- a/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php +++ b/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php @@ -44,6 +44,9 @@ abstract class AbstractHydrator /** @var EntityManager The EntityManager instance. */ protected $_em; + /** @var AbstractPlatform The dbms Platform instance */ + protected $_platform; + /** @var UnitOfWork The UnitOfWork of the associated EntityManager. */ protected $_uow;