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