The method isStringNull() does not seem to exist on object<AlgoWeb\ODataMetadata\IsOK>.
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
10
return false;
11
}
12
if(empty(trim($str))){
13
return false;
14
}
15
return true;
16
}
17
18
protected function isStringNotNull($str)
19
{
20
if(null == $str){
21
return false;
22
}
23
if(!is_string($str)){
24
return false;
25
}
26
return true;
27
}
28
29
protected function isNotNullIstanceOf($var, $insanceOf){
30
if(null == $var){
31
return false;
32
}
33
if(!($var instanceof $insanceOf)){
34
return false;
35
}
36
return true;
37
}
38
39
protected function isValidArray($arr, $insanceOf, $minCount = -1, $maxCount = -1){
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.