Basically I'm trying to do this
$className = 'myClass';
$className::myMethod($aParameter);
but I'm getting a unexpected T_PAAMAYIM_NEKUDOTAYIM, however I read that I could replycate
$className::myMethod();
with
call_user_func(array($className, 'myMethod'));
the only problem now is that I really need to pass that paremeter, any idea on how can I get around this?