Skip to content

Commit

Permalink
Add getters to Log entity
Browse files Browse the repository at this point in the history
  • Loading branch information
maxgu authored Sep 22, 2016
1 parent eeb7b7f commit dbd8bbe
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion src/Domain/Log/Log.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,36 @@ public function populate(array $array = [])

return parent::populate($array);
}
}

/**
* @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;
}
}

0 comments on commit dbd8bbe

Please sign in to comment.