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...
17
}
18
19
15
public function readAttrHydrate(string $name = 'text', $default = '', DOMNode $node = null)
20
{
21
15
$value = $this->readAttr($name, $default, $node);
22
23
15
if (!$value) {
24
2
return $value;
25
}
26
27
14
return Util::hydrate($this->store, $value);
28
}
29
30
15
public function readAttrText(string $name = 'text', $default = '', DOMNode $node = null)
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.