Completed
Push — master ( cce066...afef04 )
by arto
02:53
created
source/Request/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@
 block discarded – undo
226 226
         $options[CURLOPT_RETURNTRANSFER]    = true;
227 227
 
228 228
         if ($isDataProvided) {
229
-            $dataIsNotFromTypeScalar   = (!is_scalar($data));
229
+            $dataIsNotFromTypeScalar = (!is_scalar($data));
230 230
 
231 231
             if ($dataIsNotFromTypeScalar) {
232 232
                 $data = http_build_query($data);
Please login to merge, or discard this patch.
source/Builder/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
             $parameters,
92 92
             $data
93 93
         );
94
-        $response   = $this->applyBehaviours($behaviours, $response);
94
+        $response = $this->applyBehaviours($behaviours, $response);
95 95
         //end of business logic
96 96
 
97 97
         return $response;
Please login to merge, or discard this patch.
source/Request/RequestFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
             $this->getDefaultHeaderLines()
27 27
         );
28 28
 
29
-        $defaultOptions     = $this->createDefaultOptions(
29
+        $defaultOptions = $this->createDefaultOptions(
30 30
             $this->getDefaultRawOptions(),
31 31
             $this->getDefaultOptions()
32 32
         );
Please login to merge, or discard this patch.