Bug #62553 » objectstorage-offsetexists-check-object.patch
typo3/sysext/extbase/Classes/Persistence/ObjectStorage.php | ||
---|---|---|
* @return bool
|
||
*/
|
||
public function offsetExists($object) {
|
||
return isset($this->storage[spl_object_hash($object)]);
|
||
return is_object($object) && isset($this->storage[spl_object_hash($object)]);
|
||
}
|
||
/**
|