hello.thanks for great framework.
I got an error, when I called annotations getPropety method.
$annotations = new \Phalcon\Annotations\Adapter\Memory();
//It is work
$result = $annotations->getMethods('ClassName');
//It is work
$result = $annotations->getMethod('ClassName', 'methodName');
//It is work
$result = $annotations->getProperties('ClassName');
//It is not work
$result = $annotations->getProperty('ClassName', 'propertyName');
the error message is
Fatal error: Phalcon\Annotations\Adapter::getProperty(): Call to undefined method getpropertyannotations() on class Phalcon\Annotations\Reflection
Is this a bug?
I use phalcon1.2.2 and php5.5.1. thank you.