Completed
Push — guzzle-6 ( 149b1b...ab3f50 )
by Chris
03:45
created
src/GuzzleAdapter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public function getMetadata($path)
115 115
     {
116
-        if (! $response = $this->head($path)) {
116
+        if (!$response = $this->head($path)) {
117 117
             return false;
118 118
         }
119 119
 
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
      */
179 179
     public function has($path)
180 180
     {
181
-        if (! $response = $this->head($path)) {
181
+        if (!$response = $this->head($path)) {
182 182
             return false;
183 183
         }
184 184
 
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      */
199 199
     public function read($path)
200 200
     {
201
-        if (! $response = $this->get($path)) {
201
+        if (!$response = $this->get($path)) {
202 202
             return false;
203 203
         }
204 204
 
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      */
214 214
     public function readStream($path)
215 215
     {
216
-        if (! $response = $this->get($path)) {
216
+        if (!$response = $this->get($path)) {
217 217
             return false;
218 218
         }
219 219
 
Please login to merge, or discard this patch.