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
Нужно переделать метод group на именованные аргументы:
public static function group(array $options = [], callable $callback = null)
Должно быть
public static function group( string|array $before, string|array $after, string $prefix = null, string $namespace = null, callable $handler = null )
Это даст нам более наглядную запись:
AppRouter::group(before: ..., after: ..., handler: function() {});
Подумать над тем, что миддлвар может быть записан не как строка, а как коллбэк
The text was updated successfully, but these errors were encountered:
KarelWintersky
No branches or pull requests
Нужно переделать метод group на именованные аргументы:
Должно быть
Это даст нам более наглядную запись:
Подумать над тем, что миддлвар может быть записан не как строка, а как коллбэк
The text was updated successfully, but these errors were encountered: