diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-02-15 12:16:02 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-27 12:25:53 +0100 |
commit | 36563d4a4b98cbd491b3832c29fee77e9f8b7118 (patch) | |
tree | d5abaa6ca5de0d4011ac03781a669a597f25d380 /lib | |
parent | 9cf49873fa0d6b9156da7983e729a59e8417d653 (diff) | |
download | nextcloud-server-36563d4a4b98cbd491b3832c29fee77e9f8b7118.tar.gz nextcloud-server-36563d4a4b98cbd491b3832c29fee77e9f8b7118.zip |
Remove setters
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/AppFramework/Http/Template/SimpleMenuAction.php | 48 |
1 files changed, 0 insertions, 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 @@ -72,54 +72,6 @@ class SimpleMenuAction implements IMenuAction { } /** - * @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 */ |