mirror of
https://github.com/flarum/framework.git
synced 2025-05-06 19:42:27 +08:00
15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
<?php
|
|
|
|
namespace Psr\Log {
|
|
interface LoggerInterface {}
|
|
}
|
|
|
|
namespace Illuminate\Log {
|
|
|
|
/**
|
|
* @mixin \Illuminate\Log\LogManager
|
|
* @mixin \Monolog\Logger
|
|
*/
|
|
class Logger implements \Psr\Log\LoggerInterface {}
|
|
}
|