![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/lib/internal/Customweb/Annotation/ |
<?php interface Customweb_Annotation_IAnnotationReflector { /** * Returns true, when the given annotation (the class name of the annotation) exists on * the given reflection item. * * @param string $class * @return true */ public function hasAnnotation($class); /** * Returns the annotation instance of the given annotation class name for the current * reflection item. * * @param string $annotation * @return Customweb_IAnnotation */ public function getAnnotation($annotation); /** * Returns all annotations present on the given reflection item. * * @return Customweb_IAnnotation[] */ public function getAnnotations(); /** * Returns all annotations present on the given reflection item * restricted by the given restriction. * * @return Customweb_IAnnotation[] */ public function getAllAnnotations($restriction = false); }