X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fdoctrine%2Fcommon%2Flib%2FDoctrine%2FCommon%2FPersistence%2FObjectManagerDecorator.php;fp=vendor%2Fdoctrine%2Fcommon%2Flib%2FDoctrine%2FCommon%2FPersistence%2FObjectManagerDecorator.php;h=e77a968d51590bf44c627af220d17557197e6841;hb=5e458ff8cb4924fd5fa03b80d8edfcc52fe43479;hp=8946475dbac7901de4d18d73dc227910df09fd71;hpb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;p=yaffs-website diff --git a/vendor/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManagerDecorator.php b/vendor/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManagerDecorator.php index 8946475db..e77a968d5 100644 --- a/vendor/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManagerDecorator.php +++ b/vendor/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManagerDecorator.php @@ -47,7 +47,7 @@ abstract class ObjectManagerDecorator implements ObjectManager */ public function persist($object) { - return $this->wrapped->persist($object); + $this->wrapped->persist($object); } /** @@ -55,7 +55,7 @@ abstract class ObjectManagerDecorator implements ObjectManager */ public function remove($object) { - return $this->wrapped->remove($object); + $this->wrapped->remove($object); } /** @@ -71,7 +71,7 @@ abstract class ObjectManagerDecorator implements ObjectManager */ public function clear($objectName = null) { - return $this->wrapped->clear($objectName); + $this->wrapped->clear($objectName); } /** @@ -79,7 +79,7 @@ abstract class ObjectManagerDecorator implements ObjectManager */ public function detach($object) { - return $this->wrapped->detach($object); + $this->wrapped->detach($object); } /** @@ -87,7 +87,7 @@ abstract class ObjectManagerDecorator implements ObjectManager */ public function refresh($object) { - return $this->wrapped->refresh($object); + $this->wrapped->refresh($object); } /** @@ -95,7 +95,7 @@ abstract class ObjectManagerDecorator implements ObjectManager */ public function flush() { - return $this->wrapped->flush(); + $this->wrapped->flush(); } /** @@ -127,7 +127,7 @@ abstract class ObjectManagerDecorator implements ObjectManager */ public function initializeObject($obj) { - return $this->wrapped->initializeObject($obj); + $this->wrapped->initializeObject($obj); } /**