123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace core\log;
- interface Builder
- {
-
- public static function getInstance();
-
- public function write($content, $level = "info", $username = null);
-
- public function error($content);
-
- public function info($content);
- }
|