* //Parse the annotations in a class * $reader = new \Phalcon\Annotations\Reader(); * $parsing = $reader->parse('MyComponent'); * * //Create the reflection * $reflection = new \Phalcon\Annotations\Reflection($parsing); * * //Get the annotations in the class docblock * $classAnnotations = $reflection->getClassAnnotations(); * */ class Reflection { protected $_reflectionData; protected $_classAnnotations; protected $_methodAnnotations; protected $_propertyAnnotations; /** * \Phalcon\Annotations\Reflection constructor * * @param array $reflectionData */ public function __construct($reflectionData=null){ } /** * Returns the annotations found in the class docblock * * @return \Phalcon\Annotations\Collection */ public function getClassAnnotations(){ } /** * Returns the annotations found in the methods' docblocks * * @return \Phalcon\Annotations\Collection[] */ public function getMethodsAnnotations(){ } /** * Returns the annotations found in the properties' docblocks * * @return \Phalcon\Annotations\Collection[] */ public function getPropertiesAnnotations(){ } /** * Returns the raw parsing intermediate definitions used to construct the reflection * * @return array */ public function getReflectionData(){ } /** * Restores the state of a \Phalcon\Annotations\Reflection variable export * * @return array $data */ public static function __set_state($data){ } } }