From 37500c9ab0644b82e4fd8ae0c0d5314bddbba4ab Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Mon, 6 Mar 2017 17:25:41 +0000
Subject: [PATCH] Issue #2858081 by gaurav.kapoor: Constructor Shouldn't have a
 return statement

---
 .../Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php b/core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php
index f914b698c8b5..c6579465eeef 100644
--- a/core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php
+++ b/core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php
@@ -55,7 +55,7 @@ class ZfExtensionManagerSfContainer implements ReaderManagerInterface, WriterMan
    *   The prefix to be used when retrieving plugins from the container.
    */
   public function __construct($prefix = '') {
-    return $this->prefix = $prefix;
+    $this->prefix = $prefix;
   }
 
   /**
-- 
GitLab