Completed
Push — master ( 03ee04...748628 )
by Nassif
10:57
created
src/Restricter/BasicAuthRestricter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     /**
79 79
      * Set headers.
80 80
      *
81
-     * @param $header
81
+     * @param string $header
82 82
      */
83 83
     protected function tryToSetAuthPHPFrom($header)
84 84
     {
Please login to merge, or discard this patch.
src/Restricter/IpHelper.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     /**
19 19
      * Checks client IP against allowed ips.
20 20
      *
21
-     * @param $clientIp
21
+     * @param string $clientIp
22 22
      *
23 23
      * @return bool
24 24
      *
@@ -104,6 +104,9 @@  discard block
 block discarded – undo
104 104
         return ($ip & $mask) == $subnet;
105 105
     }
106 106
 
107
+    /**
108
+     * @param string $csv
109
+     */
107 110
     private function commaSepratedValues($csv, $trim = true)
108 111
     {
109 112
         $items = ! empty($csv) && is_string($csv)
Please login to merge, or discard this patch.