Add missing getter method to motolite events #730
This commit is contained in:
parent
24bd64d6e0
commit
9b7e0e55a7
1 changed files with 11 additions and 0 deletions
|
|
@ -63,6 +63,17 @@ class MotoliteEvent
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getID()
|
||||||
|
{
|
||||||
|
return $this->id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setID($id)
|
||||||
|
{
|
||||||
|
$this->id = $id;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
return $this->name;
|
return $this->name;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue