From 31ac79327398c48ac86e144c22520d13ce4822e7 Mon Sep 17 00:00:00 2001 From: Netkas Date: Wed, 1 Mar 2023 20:22:35 -0500 Subject: [PATCH] Minor update --- src/LogLib/Objects/Event.php | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/src/LogLib/Objects/Event.php b/src/LogLib/Objects/Event.php index 69ef4ea..12530e6 100644 --- a/src/LogLib/Objects/Event.php +++ b/src/LogLib/Objects/Event.php @@ -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 */