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