| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | public function __construct( |
||
| 39 | \DateTimeInterface $time, |
||
| 40 | string $channel, |
||
| 41 | string $level, |
||
| 42 | string $message, |
||
| 43 | array $context = [] |
||
| 44 | ) { |
||
| 45 | $this->time = $time; |
||
| 46 | $this->channel = $channel; |
||
| 47 | $this->level = $level; |
||
| 48 | $this->message = $message; |
||
| 49 | $this->context = $context; |
||
| 50 | } |
||
| 92 |