
【主 题】:提交runing字段 【描 述】: [原因]:正则匹配 bind_route 添加runing字段 PS:对应取出bind_route的, 即分割符 [过程]: [影响]: 【结 束】
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yansongda\Artful;
|
|
|
|
use Yansongda\Artful\Contract\EventDispatcherInterface;
|
|
use Yansongda\Artful\Exception\ContainerException;
|
|
use Yansongda\Artful\Exception\Exception;
|
|
use Yansongda\Artful\Exception\InvalidParamsException;
|
|
use Yansongda\Artful\Exception\ServiceNotFoundException;
|
|
|
|
/**
|
|
* @method static Event\Event dispatch(object $event)
|
|
*/
|
|
class Event
|
|
{
|
|
/**
|
|
* @throws ContainerException
|
|
* @throws ServiceNotFoundException
|
|
* @throws InvalidParamsException
|
|
*/
|
|
public static function __callStatic(string $method, array $args): void
|
|
{
|
|
if (!Artful::hasContainer() || !Artful::has(EventDispatcherInterface::class)) {
|
|
return;
|
|
}
|
|
|
|
$class = Artful::get(EventDispatcherInterface::class);
|
|
|
|
if ($class instanceof \Psr\EventDispatcher\EventDispatcherInterface) {
|
|
$class->{$method}(...$args);
|
|
|
|
return;
|
|
}
|
|
|
|
throw new InvalidParamsException(Exception::PARAMS_EVENT_DRIVER_INVALID, '参数异常: 配置的 `EventDispatcherInterface` 不符合 PSR 规范');
|
|
}
|
|
}
|