Is there a chance to write on zephir something like this
public function get($name)
{
var_dump($name);
var_dump(func_get_args());
}
get("hello", "world");
I tryed
public function get(name)
{
var_dump(name);
var_dump(func_get_args());
}
get("hello", "world");
but
it throws BadMethodCallException. I'm disappointed a bit.
Can someone help me?