diff --git a/application/libraries/MenuObjects/MenuItem.php b/application/libraries/MenuObjects/MenuItem.php index 240cfc95bc1..55e08ed53ae 100644 --- a/application/libraries/MenuObjects/MenuItem.php +++ b/application/libraries/MenuObjects/MenuItem.php @@ -4,7 +4,6 @@ class MenuItem implements MenuItemInterface { - protected $isDivider = false; protected $isSmallText = false; protected $href = "#"; @@ -36,22 +35,27 @@ public function __construct($options) public function getHref() { -return $this->href; } + return $this->href; + } public function getLabel() { -return $this->label; } + return $this->label; + } public function getIconClass() { -return $this->iconClass; } + return $this->iconClass; + } public function isDivider() { -return $this->isDivider; } + return $this->isDivider; + } public function isSmallText() { -return $this->isSmallText; } - + return $this->isSmallText; + } // Used by array_unique public function __toString() { -return $this->href; } + return $this->href; + } }