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...
63
}
64
65
public static function assign(string $key, $value): void
66
{
67
if (is_array($value)) {
68
$value = json_decode(json_encode($value), false);
69
}
70
self::$assign[$key] = $value;
71
}
72
73
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.