From 452b50fd30de0937e87954418ddbd54773311bce Mon Sep 17 00:00:00 2001 From: Walter Dal Mut Date: Sat, 13 Jun 2015 12:08:40 +0200 Subject: [PATCH] Removed useless `return $this` during constructor --- src/Client.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index e1537ee844..fa795a22c5 100644 --- a/src/Client.php +++ b/src/Client.php @@ -14,7 +14,6 @@ class Client public function __construct(Adapter\AdapterInterface $adapter) { $this->adapter = $adapter; - return $this; } public function getAdapter()