No, as danger says above, if a funtion/method is called as
Class->method(); or
$instance->method();, the first argument will
always be the part before the class name or instance variable.
He didn't mention the
indirect syntax ie method Class ();, which
acts the same way as the direct syntax, but is less clear
except for $foo = new Class;.