32 lines
372 B
PHP
32 lines
372 B
PHP
|
<?php
|
||
|
|
||
|
namespace alveolata\module;
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
interface interface_module
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* shall construct/build/establish the module
|
||
|
*
|
||
|
* @author Christian Fraß <frass@greenscale.de>
|
||
|
*/
|
||
|
function setup(
|
||
|
) : void
|
||
|
;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* shall close/remove/terminate the module
|
||
|
*
|
||
|
* @author Christian Fraß <frass@greenscale.de>
|
||
|
*/
|
||
|
function teardown(
|
||
|
) : void
|
||
|
;
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|