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
Так как в PHP8 возможны именованные аргументы - мы можем отказаться от массива options в методе init
The text was updated successfully, but these errors were encountered:
А в addScope нам надо добавить возможность задавать опции не только по индексу, но и ключу.
addScope
Сейчас:
AppLogger::addScope('mysql', [ [ '__mysql.100-debug.log', Logger::DEBUG, 'enable' => true], ]);
а надо:
AppLogger::addScope('mysql', [ [ 'file' => '__mysql.100-debug.log', 'level' => Logger::DEBUG, 'enable' => true], ]);
Sorry, something went wrong.
С бабблингом непонятно: https://github.com/Seldaek/monolog/blob/main/doc/01-usage.md
Будет реализовано в 2.0, несовместимой с PHP 7.4
KarelWintersky
No branches or pull requests
Так как в PHP8 возможны именованные аргументы - мы можем отказаться от массива options в методе init
The text was updated successfully, but these errors were encountered: