App\Source\Composite\MenuLink::__construct PHP Method

__construct() public method

Creates a hyperlink
public __construct ( $text, string $url, array $attributes = [] ) : void
$url string
$attributes array
return void
    public function __construct($text, $url, $attributes = array())
    {
        $this->text = $text;
        $this->url = $url;
        if (is_array($attributes)) {
            $this->attributes($attributes);
        }
    }