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 规范');
|
||
|
}
|
||
|
}
|