Check if the class have a public method with the given name.
mixed $class:
mixed $method:
bool
Overrides ReflectionService::hasPublicMethod
public function hasPublicMethod($class, $method) {
return method_exists($class, $method) && is_callable(array(
$class,
$method,
));
}