From 9b7e0e55a757f8d00b61c8d0472dbc66dc694696 Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Tue, 16 May 2023 12:20:05 +0800 Subject: [PATCH] Add missing getter method to motolite events #730 --- src/Entity/MotoliteEvent.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Entity/MotoliteEvent.php b/src/Entity/MotoliteEvent.php index e2bf3db4..4349b44b 100644 --- a/src/Entity/MotoliteEvent.php +++ b/src/Entity/MotoliteEvent.php @@ -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;