Matthew Kilgore 05aa62f70c feat: STUBS!
2021-12-01 17:36:36 -05:00

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 {}
}