diff --git a/src/Domain/Log/Log.php b/src/Domain/Log/Log.php index aa60d04..065b575 100644 --- a/src/Domain/Log/Log.php +++ b/src/Domain/Log/Log.php @@ -45,4 +45,36 @@ public function populate(array $array = []) return parent::populate($array); } -} \ No newline at end of file + + /** + * @return string + */ + public function getMessage() + { + return $this->message; + } + + /** + * @return int + */ + public function getScope() + { + return $this->scope; + } + + /** + * @return int + */ + public function getPriority() + { + return $this->priority; + } + + /** + * @return string + */ + public function getCreatedDt() + { + return $this->createdDt; + } +}