Completed
Push — master ( 036c01...8ec94e )
by Nils
02:11
created
src/Rules/Cookies/CountRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,12 +36,12 @@
 block discarded – undo
36 36
                 if ($cookieCount > $this->maxCookies) {
37 37
                     $result = new CheckResult(
38 38
                         CheckResult::STATUS_FAILURE,
39
-                        $cookieCount . ' cookies were stored (limit was ' . $this->maxCookies . ').',
39
+                        $cookieCount.' cookies were stored (limit was '.$this->maxCookies.').',
40 40
                         $cookieCount);
41 41
                 } else {
42 42
                     $result = new CheckResult(
43 43
                         CheckResult::STATUS_SUCCESS,
44
-                        $cookieCount . ' cookies were stored (limit was ' . $this->maxCookies . ').',
44
+                        $cookieCount.' cookies were stored (limit was '.$this->maxCookies.').',
45 45
                         $cookieCount);
46 46
                 }
47 47
 
Please login to merge, or discard this patch.