Files
awo-hamburg-intranet/mysyde/common/logparser/class.log.processor.php
2026-02-17 14:56:23 +01:00

16 lines
356 B
PHP

<?php
// -------------------------
// log_processor interface
//
// implement this class in any processors your write
//
// currently the only required function is process, which processes the
// array log of log data returned from preg_match
//
// -------------------------
interface log_processor {
function process( $data );
}
?>