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...
50
}
51
52
public static function assign(string $key, $value): void
53
{
54
if (is_array($value)) {
55
$value = json_decode(json_encode($value), false);
56
}
57
self::$assign[$key] = $value;
58
}
59
60
public static function render(string $template): void
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.