public function StaticReflectionService::hasPublicMethod in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/StaticReflectionService.php \Doctrine\Common\Persistence\Mapping\StaticReflectionService::hasPublicMethod()
Checks if the class have a public method with the given name.
Parameters
mixed $class:
mixed $method:
Return value
bool
Overrides ReflectionService::hasPublicMethod
File
- vendor/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ StaticReflectionService.php, line 79
Class
- StaticReflectionService
- PHP Runtime Reflection Service.
Namespace
Doctrine\Common\Persistence\MappingCode
public function hasPublicMethod($class, $method) {
return true;
}