1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Fix notice

This commit is contained in:
Benjamin Eberlei 2011-10-15 16:03:50 +02:00
parent 640facd26a
commit dd6f6cb097

View file

@ -2456,6 +2456,6 @@ class UnitOfWork implements PropertyChangedListener
if ( ! is_object($object) ) { if ( ! is_object($object) ) {
throw new InvalidArgumentException("Managed entity required"); throw new InvalidArgumentException("Managed entity required");
} }
return $this->readOnlyObjects[spl_object_hash($object)]; return isset($this->readOnlyObjects[spl_object_hash($object)]);
} }
} }