Minor update

This commit is contained in:
Netkas 2023-03-01 20:22:35 -05:00
parent 30ad2ee1ab
commit 31ac793273

View file

@ -18,13 +18,6 @@
*/
public $Level;
/**
* The Unix Timestamp of when the event was created
*
* @var string
*/
private $Timestamp;
/**
* An array of backtraces, if any, that were created when the event was created
*
@ -46,14 +39,6 @@
*/
public $Message;
/**
* Public Constructor
*/
public function __construct()
{
$this->Timestamp = date('c');
}
/**
* Sets an exception to the event
*
@ -65,14 +50,6 @@
$this->Exception = Utilities::exceptionToArray($e);
}
/**
* @return string
*/
public function getTimestamp(): string
{
return $this->Timestamp;
}
/**
* @return array|null
*/