This package provides APIs to access annotations in PHP
PhpPlatform\Annotations\Annotation::getAnnotations($className, $propertyName="*", $constantName="*", $methodName="*");
where
$className
is complete name of the class for which annotations are needed$propertyName
is a string of a property or array of properties for which annotations are needed$constantName
is a string of a constant or array of constants for which annotations are needed$methodName
is a string of a method name or array of method names for which annotations are needed
For example , please see the test case TestAnnotation