We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Reflection is incomplete

I have a Class that looks like this:

Class Jeff{ /**

Now I am using the Reflector from Phalconphp:

$reader = new Reader(); $parsing = $reader->parse('Jeff''); $reflector = new Reflection($parsing);

$reflector->getPropertiesAnnoations();

And what I get is sth. like

object(Phalcon\Annotations\Collection) with name = var and arguments = null

and name=doc // without -tag

Is it me who failed or is this a Bug ?