| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function __construct(string $name, string $messageLevel = MessageLevels::INFO, array $metaData = [], ?float $microtime = null) |
||
| 25 | { |
||
| 26 | $this->name = $name; |
||
| 27 | $this->messageLevel = $messageLevel; |
||
| 28 | $this->metaData = $metaData; |
||
| 29 | $this->microtime = $microtime ?? microtime(true); |
||
| 30 | } |
||
| 31 | |||
| 43 |