PluginProbe
Premmerce / 1.3.23
Premmerce v1.3.23
trunk 1.0 1.1 1.2 1.2.1 1.3 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 1.3.17 1.3.18 1.3.19 1.3.2 1.3.20 1.3.21 1.3.22 1.3.23 1.3.3 1.3.4 1.3.5 1.3.6 All 28 releases
premmerce / src / Addons / AddonInterface.php

AddonInterface.php in Premmerce 1.3.23, at src/Addons/AddonInterface.php

32 lines 492 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php namespace Premmerce\Premmerce\Addons;
2
3 interface AddonInterface
4 {
5 /**
6 * AddonInterface constructor.
7 *
8 * @param string $mainFile
9 */
10 public function __construct($mainFile);
11
12 /**
13 * @return mixed
14 */
15 public function run();
16
17 /**
18 * @return mixed
19 */
20 public function activate();
21
22 /**
23 * @return mixed
24 */
25 public function deactivate();
26
27 /**
28 * @return mixed
29 */
30 public static function uninstall();
31 }
32