Initial commit

This commit is contained in:
Frank Schubert
2021-03-29 23:04:42 +02:00
commit 4ea4927931
3737 changed files with 709905 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
abstract class mfLog {
protected $severity;
public function __construct() {
$this->severity=array('debug','notice','info','warn','error','crit');
}
abstract public function write($message,$severity="crit");
abstract public function init();
}