Completed
Push — master ( 9bd6a3...c44643 )
by Patrick
03:49
created
Data/class.FilterClause.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -28,12 +28,18 @@
 block discarded – undo
28 28
         return substr($haystack, 0, strlen($needle)) === $needle;
29 29
     }
30 30
 
31
+    /**
32
+     * @param string $string
33
+     */
31 34
     protected function filterIsFunction($string)
32 35
     {
33 36
         return (self::str_startswith($string, 'substringof') || self::str_startswith($string, 'contains') ||
34 37
                 self::str_startswith($string, 'indexof'));
35 38
     }
36 39
 
40
+    /**
41
+     * @param string $op
42
+     */
37 43
     protected function odataOpToStd($op)
38 44
     {
39 45
         switch($op)
Please login to merge, or discard this patch.