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