1 | <?php |
||
8 | class Glow |
||
9 | { |
||
10 | use UsesTime; |
||
11 | |||
12 | /** @var string */ |
||
13 | private $name; |
||
14 | |||
15 | /** @var array */ |
||
16 | private $metaData; |
||
17 | |||
18 | /** @var string */ |
||
19 | private $messageLevel; |
||
20 | |||
21 | /** @var float */ |
||
22 | private $microtime; |
||
23 | |||
24 | public function __construct(string $name, string $messageLevel = MessageLevels::INFO, array $metaData = [], ?float $microtime = null) |
||
31 | |||
32 | public function toArray() |
||
42 | } |
||
43 |