rosavox/lib/alveolata/module/interface.php

32 lines
372 B
PHP
Raw Normal View History

2025-05-23 07:33:29 +00:00
<?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
;
}
?>