Skip to content

Commit

Permalink
Dev: Indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Feb 17, 2020
1 parent 3cd6199 commit 1924790
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions application/libraries/MenuObjects/MenuItem.php
Expand Up @@ -4,7 +4,6 @@

class MenuItem implements MenuItemInterface
{

protected $isDivider = false;
protected $isSmallText = false;
protected $href = "#";
Expand Down Expand Up @@ -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;
}
}

0 comments on commit 1924790

Please sign in to comment.