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
For the following Zephir code:
/** * Returns the internal event manager */ public function getInternalEventsManager() -> <ManagerInterface> | null { return this->eventsManager; }
The following sub was generated:
/** * Returns the internal event manager * * @return mixed */ public function getInternalEventsManager(): ?ManagerInterface { }
It is a bit non accurate and should be as follows:
/** * Returns the internal event manager * -* @return mixed +* @return ManagerInterface|null */ public function getInternalEventsManager(): ?ManagerInterface { }
The text was updated successfully, but these errors were encountered:
Implemented in development branch
Sorry, something went wrong.
AlexNDRmac
No branches or pull requests
For the following Zephir code:
The following sub was generated:
It is a bit non accurate and should be as follows:
The text was updated successfully, but these errors were encountered: