FOSSology  4.4.0
Open Source License Compliance by Open Source Software
Plugin.php
1 <?php
2 /*
3  SPDX-FileCopyrightText: © 2014 Siemens AG
4 
5  SPDX-License-Identifier: GPL-2.0-only
6 */
7 
8 namespace Fossology\Lib\Plugin;
9 
10 interface Plugin
11 {
12  function execute();
13 
14  function preInstall();
15  function postInstall();
16 
17  function unInstall();
18 
22  function getName();
23 
24  function __toString();
25 }