Add missing getter method to motolite events #730

This commit is contained in:
Ramon Gutierrez 2023-05-16 12:20:05 +08:00
parent 24bd64d6e0
commit 9b7e0e55a7

View file

@ -63,6 +63,17 @@ class MotoliteEvent
return $this;
}
public function getID()
{
return $this->id;
}
public function setID($id)
{
$this->id = $id;
return $this;
}
public function getName()
{
return $this->name;