Files
awo-hamburg-intranet/mysyde/common/logparser/class.log.processor.php

16 lines
356 B
PHP
Raw Normal View History

2026-02-17 14:56:23 +01:00
<?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 );
}
?>