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
Generating stubs for the file below using the latest zephir from the master branch
namespace Phalcon\Storage\Adapter; abstract class AbstractAdapter implements AdapterInterface { }
Will generate a stub like this
<?php namespace Phalcon\Storage\Adapter; abstract class AbstractAdapter implements Phalcon\Storage\Adapter\AdapterInterface { }
Expected result:
<?php namespace Phalcon\Storage\Adapter; abstract class AbstractAdapter implements \Phalcon\Storage\Adapter\AdapterInterface { }
This also occurs when extending interfaces
namespace Phalcon\Mvc; interface ViewInterface extends ViewBaseInterface { }
Generated stub
<?php namespace Phalcon\Mvc; interface ViewInterface extends Phalcon\Mvc\ViewBaseInterface { }
Expected
<?php namespace Phalcon\Mvc; interface ViewInterface extends \Phalcon\Mvc\ViewBaseInterface { }
The text was updated successfully, but these errors were encountered:
Fixed errors manually. See issue zephir-lang/zephir#2016
83faaee
Fixed in the development branch. Feel free to open a new issue if the problem appears again. Thank you for the bug report.
development
Sorry, something went wrong.
AlexNDRmac
No branches or pull requests
Generating stubs for the file below using the latest zephir from the master branch
Will generate a stub like this
Expected result:
This also occurs when extending interfaces
Generated stub
Expected
The text was updated successfully, but these errors were encountered: