Completed
Push — guzzle-6 ( dd69ff...f6e5bc )
by Chris
12:36 queued 07:23
created
src/GuzzleAdapter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function getMetadata($path)
123 123
     {
124
-        if (! $response = $this->head($path)) {
124
+        if (!$response = $this->head($path)) {
125 125
             return false;
126 126
         }
127 127
 
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
      */
203 203
     public function read($path)
204 204
     {
205
-        if (! $response = $this->get($path)) {
205
+        if (!$response = $this->get($path)) {
206 206
             return false;
207 207
         }
208 208
 
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      */
218 218
     public function readStream($path)
219 219
     {
220
-        if (! $response = $this->get($path)) {
220
+        if (!$response = $this->get($path)) {
221 221
             return false;
222 222
         }
223 223
 
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
      */
311 311
     protected function head($path)
312 312
     {
313
-        if (! $this->supportsHead) {
313
+        if (!$this->supportsHead) {
314 314
             return $this->get($path);
315 315
         }
316 316
 
Please login to merge, or discard this patch.