You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I define the following class in Zephir with my Json class as the return type hint the zephir stubs command calculates the correct namespace for the class, but the zephir api documentation call seems to ignore the use statement.
Origin /library/api/client/apiresponse.zep file:
namespace Library\API\Client;
use Library\Types\Json;
class APIResponse extends Json {
...
publicfunctiongetData() -><Json> {
returnnewJson(this->get("data"));
}
...
}
If I define the following class in Zephir with my Json class as the return type hint the zephir stubs command calculates the correct namespace for the class, but the zephir api documentation call seems to ignore the use statement.
Origin /library/api/client/apiresponse.zep file:
PHP Stub Code "zephir stubs"
API Documentation Methods
The text was updated successfully, but these errors were encountered: