Security update to Drupal 8.4.6
[yaffs-website] / vendor / doctrine / common / lib / Doctrine / Common / Persistence / ObjectManagerDecorator.php
index 8946475dbac7901de4d18d73dc227910df09fd71..e77a968d51590bf44c627af220d17557197e6841 100644 (file)
@@ -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);
     }
 
     /**