Remove setters
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
9cf49873fa
commit
36563d4a4b
1 changed files with 0 additions and 48 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue