We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The stubs generated using zephir stubs are missing the use statements at the top of the file.
zephir stubs
use
This might not be a problem since for most of the stubs we have the fully qualified namespace for certain elements i.e.
/** * Sets the dependency injector * * @param \Phalcon\DiInterface $container */ public function setDI(\Phalcon\DiInterface $container) {}
However it seems return variables are not properly parsed
/** * Returns the internal dependency injector * * @return \Phalcon\DiInterface */ public function getDI(): DiInterface {}
The same happens with variables
/** * @var <UrlInterface> */ private $url;
I think either we need to add the use statements at the top of the file or parse variables as well as return values with the full namespaces.
The text was updated successfully, but these errors were encountered:
Fixed in development branch. Thank you for the bug report!
Sorry, something went wrong.
AlexNDRmac
No branches or pull requests
The stubs generated using
zephir stubs
are missing theuse
statements at the top of the file.This might not be a problem since for most of the stubs we have the fully qualified namespace for certain elements i.e.
However it seems return variables are not properly parsed
The same happens with variables
I think either we need to add the
use
statements at the top of the file or parse variables as well as return values with the full namespaces.The text was updated successfully, but these errors were encountered: