How can I call following Class method or function?
Let say I have this params get from url:
$var = filter($_GET[\'params\']);
As th function is not using $this at all, you can add a static keyword just after public and then call
$this
static
Functions::filter($_GET['params']);
Avoiding the creation of an object just for one method call