26 lines
438 B
PHP
26 lines
438 B
PHP
|
<?php
|
||
|
|
||
|
namespace alveolata\log;
|
||
|
|
||
|
// require_once(DIR_ALVEOLATA . '/definitions.php');
|
||
|
require_once(DIR_ALVEOLATA . '/string/functions.php');
|
||
|
require_once(DIR_ALVEOLATA . '/report/functions.php');
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @author Christian Fraß <frass@greenscale.de>
|
||
|
*/
|
||
|
interface interface_output
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @author Christian Fraß <frass@greenscale.de>
|
||
|
*/
|
||
|
function process(
|
||
|
int $level,
|
||
|
\alveolata\report\struct_report $report
|
||
|
) : void
|
||
|
;
|
||
|
|
||
|
}
|