FOSSology  4.4.0
Open Source License Compliance by Open Source Software
HtmlElement.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 interface HtmlElement
12 {
17  function setAttribute($name, $value);
18 
19  function getOpeningText();
20 
21  function getClosingText();
22 }