Completed
Push — master ( f86f76...036c01 )
by Nils
02:33
created
src/Rules/Cookies/CountRule.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
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
     {
Please login to merge, or discard this 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.