31 lines
372 B
PHP
31 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
|
|
;
|
|
|
|
}
|
|
|
|
?>
|