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...
11
return false;
12
}
13
if (empty(trim($str))) {
14
return false;
15
}
16
return true;
17
}
18
19
protected function isStringNotNull($str)
20
{
21
if (null == $str) {
22
return false;
23
}
24
if (!is_string($str)) {
25
return false;
26
}
27
return true;
28
}
29
30
protected function isNotNullIstanceOf($var, $insanceOf)
31
{
32
if (null == $var) {
33
return false;
34
}
35
if (!($var instanceof $insanceOf)) {
36
return false;
37
}
38
return true;
39
}
40
41
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.