et juste ça


class Object
{
public function __call($method, $args)
{
return call_user_func_array($this->$method, $args);
}
}