Passed
Push — master ( 68c8aa...c65e58 )
by Oss
02:03
created
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.