@@ -36,12 +36,12 @@ |
||
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 |