From 36563d4a4b98cbd491b3832c29fee77e9f8b7118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 15 Feb 2018 12:16:02 +0100 Subject: [PATCH] Remove setters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .../Http/Template/SimpleMenuAction.php | 48 ------------------- 1 file changed, 48 deletions(-) diff --git a/lib/public/AppFramework/Http/Template/SimpleMenuAction.php b/lib/public/AppFramework/Http/Template/SimpleMenuAction.php index 8a261cc217f..60bb268661c 100644 --- a/lib/public/AppFramework/Http/Template/SimpleMenuAction.php +++ b/lib/public/AppFramework/Http/Template/SimpleMenuAction.php @@ -71,54 +71,6 @@ class SimpleMenuAction implements IMenuAction { $this->detail = $detail; } - /** - * @param string $id - * @since 14.0.0 - */ - public function setId(string $id) { - $this->id = $id; - } - - /** - * @param string $label - * @since 14.0.0 - */ - public function setLabel(string $label) { - $this->label = $label; - } - - /** - * @param string $detail - * @since 14.0.0 - */ - public function setDetail(string $detail) { - $this->detail = $detail; - } - - /** - * @param string $icon - * @since 14.0.0 - */ - public function setIcon(string $icon) { - $this->icon = $icon; - } - - /** - * @param string $link - * @since 14.0.0 - */ - public function setLink(string $link) { - $this->link = $link; - } - - /** - * @param int $priority - * @since 14.0.0 - */ - public function setPriority(int $priority) { - $this->priority = $priority; - } - /** * @return string * @since 14.0.0