{@inheritdoc} 导致 phpstorm 忽略所有其他标签

{@inheritdoc} causing phpstorm to ignore all other tags

我有以下文档:

/**
     * Creates a Mortgage account
     * {@inheritdoc}
     * @param string $closingDate the date from which the mortgage starts accumulating interest and payments begin.
     */
    function __construct($principle,$term,$interest,$compoundFrequency,$amortization,$closingDate)
    {
        parent::__construct($principle,$term,$interest,$compoundFrequency,$amortization);

    }

当我在 phpstorm 中 ctrl+Q 快速文档时,我得到以下信息

我的附加文档似乎完全被忽略了。

是否可以在使用 ctrl+Q 时在 phpstorm 中显示父文档以及附加的子信息?

Is it possible to have the parent documentation as well as the additional child info display in phpstorm when using ctrl+Q ?

不幸的是没有(没有单独的选项或类似的选项)。

https://youtrack.jetbrains.com/issue/WI-23395 -- 观看这张票 (star/vote/comment) 以获得进度通知。

根据工单状态计划在PhpStorm v9中解决