File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/iTXTech/SimpleFramework/Console Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1818
1919use iTXTech \SimpleFramework \Util \Util ;
2020
21- abstract class Logger extends LoggerHandler{
21+ abstract class Logger implements LoggerHandler{
2222 public const ERROR = 3 ;
2323 public const WARNING = 2 ;
2424 public const INFO = 1 ;
Original file line number Diff line number Diff line change 1616
1717namespace iTXTech \SimpleFramework \Console ;
1818
19- abstract class LoggerHandler{
20- public static abstract function println (string $ message );
19+ interface LoggerHandler{
20+ public static function println (string $ message );
2121}
Original file line number Diff line number Diff line change 1919use Swoole \Channel ;
2020use Swoole \Process ;
2121
22- abstract class SwooleLoggerHandler extends LoggerHandler{
22+ abstract class SwooleLoggerHandler implements LoggerHandler{
2323 /** @var Process */
2424 private static $ proc ;
2525 /** @var Channel */
You can’t perform that action at this time.
0 commit comments