首页 > 解决方案 > 用于在闭包中抛出异常的 PHPDoc

问题描述

是否有任何聪明的方法来记录闭包引发异常?我正在使用 PhpStorm,我想摆脱烦人的警告,即在给定的块中永远不会引发异常。

该方法createFromState()是抛出和AbstractEntityRepositoryException异常,我想让IDE知道它。

    /**
     * Closure used to create an object from repository.
     * The default implementation is using the method {@link EntityRepositoryInterface::createFromState()}
     *
     * @var Closure|null
     * @throws AbstractEntityRepositoryException
     */
    private ?Closure $create = null;

    public function __construct(ControllerInteface $controller, string $id, ?Closure $create = null)
    {
        parent::__construct($controller, $id);
        if ($create === null) {
            $this->create = static function (EntityRepositoryInterface $repository, FormModelInterface $model): Entity {
                return $repository->createFromState($model->toState());
            };
        } 
        else {
          $this->create = $create;
        }

    }

    /**
     * @param FormModelInterface $model
     * @return Entity
     * @throws CreateActionException
     */
    public function saveModel(FormModelInterface $model): Entity
    {
        try {
            $create = $this->create;
            return $create($this->repository, $model);
        } catch (AbstractEntityRepositoryException $e) {
            throw new CreateActionException($e->getMessage(), $e->getErrors());
        }
    }

标签: phpexceptionphpstormphpdoc

解决方案


PHP Storm 似乎还没有正确支持该注释。这个问题https://youtrack.jetbrains.com/issue/WI-52095正是我的情况。感谢您的帮助!我已将我的案例添加到上述票证中。


推荐阅读