/home/techb158/dev.balacoffee.com/vendor/facade/flare-client-php/src/Glows
Edit: /home/techb158/dev.balacoffee.com/vendor/facade/flare-client-php/src/Glows/Glow.php (965B)
name = $name;
$this->messageLevel = $messageLevel;
$this->metaData = $metaData;
$this->microtime = $microtime ?? microtime(true);
}
public function toArray()
{
return [
'time' => $this->getCurrentTime(),
'name' => $this->name,
'message_level' => $this->messageLevel,
'meta_data' => $this->metaData,
'microtime' => $this->microtime,
];
}
}