log icon indicating copy to clipboard operation
log copied to clipboard

Results 3 log issues
Sort by recently updated
recently updated
newest added

Only the `LogLevel::*` log levels need to be supported per https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md#11-basics User can still widen the accepted type like `LogLevel::*|'xxx'` thanks to LSP.

Updated code style: - `strict_types` - final readonly class - promoted properties - `void `return - NullLogger instead of dealing with `null `(thereby removing the null-pointer exception I added in...