rosavox/lib/alveolata/log/output-interface.php
2025-05-23 07:33:29 +00:00

25 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
;
}