This commit is contained in:
2021-10-19 16:23:55 +08:00
parent 6c3ead0a16
commit f76749fa48
4 changed files with 7 additions and 6 deletions
@@ -5,13 +5,14 @@ namespace Server\Abstracts;
use JetBrains\PhpStorm\Pure;
use Kiri\Kiri;
use Server\SInterface\OnProcessInterface;
use Swoole\Coroutine;
use Swoole\Process;
/**
*
*/
abstract class OnProcessInterface implements \Server\SInterface\OnProcessInterface
abstract class BaseProcess implements OnProcessInterface
{
/** @var bool */
@@ -8,7 +8,7 @@ use Swoole\Process;
/**
* Interface OnProcessInterface
* Interface BaseProcess
* @package SInterface
*/
interface OnProcessInterface
+2 -2
View File
@@ -11,13 +11,13 @@ use Kiri\Exception\ComponentException;
use Kiri\Kiri;
use Swoole\Coroutine;
use Swoole\Process;
use Server\Abstracts\OnProcessInterface;
use Server\Abstracts\BaseProcess;
/**
* Class LoggerProcess
* @package Kiri\Error
*/
class LoggerProcess extends OnProcessInterface
class LoggerProcess extends BaseProcess
{
/**
@@ -6,14 +6,14 @@ use Exception;
use Kiri\Abstracts\Config;
use Kiri\Kiri;
use ReflectionException;
use Server\Abstracts\OnProcessInterface;
use Server\Abstracts\BaseProcess;
use Swoole\Process;
/**
*
*/
class FileChangeCustomProcess extends OnProcessInterface
class FileChangeCustomProcess extends BaseProcess
{