Skip to content

Commit

Permalink
remove obsolete params in Bookmark fix #393
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-peugnet committed Sep 26, 2024
1 parent 4a99b30 commit f33d59f
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions app/class/Bookmark.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ class Bookmark extends Item
/** @var string $query */
protected $query = '';

/** @var array $params*/
protected $params = [];

/** @var string $icon associated emoji */
protected $icon = '';

Expand Down Expand Up @@ -89,11 +86,6 @@ public function query()
return $this->query;
}

public function params()
{
return $this->params;
}

public function icon()
{
return $this->icon;
Expand Down Expand Up @@ -155,13 +147,6 @@ public function setquery($query)
}
}

public function setparams($params)
{
if (is_array($params)) {
$this->params = $params;
}
}

public function seticon($icon)
{
if (is_string($icon)) {
Expand Down

0 comments on commit f33d59f

Please sign in to comment.