Completed
Pull Request — master (#4)
by Rolf
03:29
created
src/Guzzle/Http/Exception/MultiTransferException.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,8 @@
 block discarded – undo
63 63
     public function addFailedRequestWithException(RequestInterface $request, \Exception $exception)
64 64
     {
65 65
         $this->add($exception)
66
-             ->addFailedRequest($request)
67
-             ->exceptionForRequest[spl_object_hash($request)] = $exception;
66
+                ->addFailedRequest($request)
67
+                ->exceptionForRequest[spl_object_hash($request)] = $exception;
68 68
 
69 69
         return $this;
70 70
     }
Please login to merge, or discard this patch.
src/Guzzle/Http/Message/Response.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
 
115 115
         $response = new static($data['code'], $data['headers'], $data['body']);
116 116
         $response->setProtocol($data['protocol'], $data['version'])
117
-                 ->setStatus($data['code'], $data['reason_phrase']);
117
+                    ->setStatus($data['code'], $data['reason_phrase']);
118 118
 
119 119
         // Set the appropriate Content-Length if the one set is inaccurate (e.g. setting to X)
120 120
         $contentLength = (string) $response->getHeader('Content-Length');
Please login to merge, or discard this patch.
src/Guzzle/Plugin/Oauth/OauthPlugin.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -161,8 +161,8 @@  discard block
 block discarded – undo
161 161
         $url = Url::factory($request->getUrl())->setQuery('')->setFragment(null);
162 162
 
163 163
         return strtoupper($request->getMethod()) . '&'
164
-             . rawurlencode($url) . '&'
165
-             . rawurlencode((string) $parameterString);
164
+                . rawurlencode($url) . '&'
165
+                . rawurlencode((string) $parameterString);
166 166
     }
167 167
 
168 168
     /**
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
      */
275 275
     public function getTimestamp(Event $event)
276 276
     {
277
-       return $event['timestamp'] ?: time();
277
+        return $event['timestamp'] ?: time();
278 278
     }
279 279
 
280 280
     /**
Please login to merge, or discard this patch.