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
Hi, thanks for this interesting piece of software!
I'm trying to use it in a prototype, but I stumbled on something that would hopefully be easy to fix:
RouteAbstract::add() returns RouteAbstract instead of static -> This means that PhpStan (and PhpStorm) show an error when having e.g.
RouteAbstract::add()
RouteAbstract
static
$routes = Route::add('_controller') ->default('login') ->group(self::getControllers(...)) ;
or
Route::add()->get();
Phpstan errors:
Call to an undefined method Ertuo\RouteAbstract::group(). Call to an undefined method Ertuo\RouteAbstract::get().
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, thanks for this interesting piece of software!
I'm trying to use it in a prototype, but I stumbled on something that would hopefully be easy to fix:
RouteAbstract::add()
returnsRouteAbstract
instead ofstatic
-> This means that PhpStan (and PhpStorm) show an error when having e.g.or
Phpstan errors:
The text was updated successfully, but these errors were encountered: