@@ -17,7 +17,6 @@ |
||
| 17 | 17 | private $maxCookies; |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * @param int $maxDuration The maximum duration a http call is allowed to take (time to first byte) |
|
| 21 | 20 | */ |
| 22 | 21 | public function init($maxCookies = 20) |
| 23 | 22 | { |
@@ -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 | |