Passed
Push — master ( 68c8aa...c65e58 )
by Oss
02:03
created
src/Brownie/HttpClient/Response.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@
 block discarded – undo
29 29
 {
30 30
 
31 31
     protected $fields = array(
32
-        'body' => null,             // Response body.
33
-        'httpCode' => null,         // HTTP response code.
34
-        'runtime' => null,          // Request execution time.
35
-        'httpHeaderList' => null,   // Header list.
36
-        'httpCookieList' => null,   // Cookie list.
32
+        'body' => null, // Response body.
33
+        'httpCode' => null, // HTTP response code.
34
+        'runtime' => null, // Request execution time.
35
+        'httpHeaderList' => null, // Header list.
36
+        'httpCookieList' => null, // Cookie list.
37 37
     );
38 38
 }
Please login to merge, or discard this patch.
src/Brownie/HttpClient/Cookie/Cookie.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -39,14 +39,14 @@
 block discarded – undo
39 39
      * @var array
40 40
      */
41 41
     protected $fields = array(
42
-        'name' => null,         // The name of the cookie.
43
-        'value' => null,        // The value of the cookie.
44
-        'expires' => '',         // The time the cookie expires.
45
-        'path' => '',           // The path on the server in which the cookie will be available on.
46
-        'domain' => '',         // The (sub)domain that the cookie is available to.
47
-        'secure' => false,      // Indicates that the cookie should only be transmitted over
42
+        'name' => null, // The name of the cookie.
43
+        'value' => null, // The value of the cookie.
44
+        'expires' => '', // The time the cookie expires.
45
+        'path' => '', // The path on the server in which the cookie will be available on.
46
+        'domain' => '', // The (sub)domain that the cookie is available to.
47
+        'secure' => false, // Indicates that the cookie should only be transmitted over
48 48
                                 // a secure HTTPS connection from the client.
49
-        'httponly' => false,    // When TRUE the cookie will be made accessible only through the HTTP protocol.
49
+        'httponly' => false, // When TRUE the cookie will be made accessible only through the HTTP protocol.
50 50
     );
51 51
 
52 52
     /**
Please login to merge, or discard this patch.
src/Brownie/HttpClient/Request.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,11 +68,11 @@
 block discarded – undo
68 68
     const HTTP_METHOD_HEADER = 'HEADER';
69 69
 
70 70
     protected $fields = array(
71
-        'method' => self::HTTP_METHOD_GET,              // HTTP request method.
72
-        'url' => null,                                  // URL request.
73
-        'body' => null,                                 // Request body.
74
-        'bodyFormat' => self::FORMAT_FORM_URLENCODED,   // Body data format.
75
-        'timeOut' => 60,                                // The maximum number of seconds allowed to execute a query.
71
+        'method' => self::HTTP_METHOD_GET, // HTTP request method.
72
+        'url' => null, // URL request.
73
+        'body' => null, // Request body.
74
+        'bodyFormat' => self::FORMAT_FORM_URLENCODED, // Body data format.
75
+        'timeOut' => 60, // The maximum number of seconds allowed to execute a query.
76 76
     );
77 77
 
78 78
     /**
Please login to merge, or discard this patch.
src/Brownie/HttpClient/Header/Header.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
      * @var array
27 27
      */
28 28
     protected $fields = array(
29
-        'name' => null,     // Header name.
30
-        'value' => null,    // Header value.
29
+        'name' => null, // Header name.
30
+        'value' => null, // Header value.
31 31
     );
32 32
 
33 33
     /**
Please login to merge, or discard this patch.
src/Brownie/HttpClient/Cookie/CookieList.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
                 $param = trim($param);
36 36
                 $params = explode('=', $param, 2);
37 37
                 $name = trim($params[0]);
38
-		$value = (!empty($params[1]) ? trim($params[1]) : '');
38
+        $value = (!empty($params[1]) ? trim($params[1]) : '');
39 39
                 if (0 == $index) {
40 40
                     $cookieParams['name'] = $name;
41 41
                     $cookieParams['value'] = $value;
Please login to merge, or discard this patch.