FOSSology  4.4.0
Open Source License Compliance by Open Source Software
LinkElement.php
1 <?php
2 /*
3  SPDX-FileCopyrightText: © 2014 Siemens AG
4  Author: Andreas Würl
5 
6  SPDX-License-Identifier: GPL-2.0-only
7 */
8 
9 namespace Fossology\Lib\Html;
10 
11 
13 {
14  public function __construct($url)
15  {
16  parent::__construct("a", array("href" => $url));
17  }
18 }