| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class FileLogger extends AbstractLogger implements LoggerInterface |
||
| 11 | { |
||
| 12 | /** @var string */ |
||
| 13 | public $outputFile; |
||
| 14 | |||
| 15 | public function __construct(string $outputFile = 'php://stdout') |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @inheritDoc |
||
| 22 | * @param string|\Stringable $message |
||
| 23 | * @param mixed[] $context |
||
| 24 | */ |
||
| 25 | public function log($level, $message, array $context = []): void |
||
| 30 |