Completed
Push — master ( 472ec5...cf38d9 )
by Rob
02:55
created
src/Classes/Url.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
         $this->standardUrlRegEx = '/' . $standardUrlRegEx . '/i';
32 32
     }
33 33
 
34
+    /**
35
+     * @param string $str
36
+     */
34 37
     function remove($str)
35 38
     {
36 39
         return preg_replace($this->standardUrlRegEx, ' ', $str);
Please login to merge, or discard this patch.
src/Handlers/Sanitise.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     }
99 99
 
100 100
     /**
101
-     * @param $data
101
+     * @param string $data
102 102
      * @param string $type
103 103
      * @param int $stringLength
104 104
      * @return mixed|string
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 
169 169
 
170 170
     /**
171
-     * @return null
171
+     * @return null|boolean
172 172
      */
173 173
     public function isSanitised()
174 174
     {
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
 
178 178
     /**
179 179
      * Returns true if the data is valid
180
-     * @return null
180
+     * @return boolean
181 181
      */
182 182
     public function isValid()
183 183
     {
Please login to merge, or discard this patch.