自动向方法和函数添加 return 类型

Automatically adding return types to methods and functions

是否有自动添加 return 类型的选项,或者至少让我生成它们?

我想要的是在 PhpStorm 生成 return 类型之前我的方法:

function isValid() 
{
    return true;
}

之后

function isValid(): bool
{
    return true;
}

这可能吗?

此问题已在以下位置得到解答: https://intellij-support.jetbrains.com/hc/en-us/community/posts/360000163824-Automatically-add-return-type-declarations-

个人资料照片看起来像 LazyOne 的人。 ;-)

他们的回答(引用并 link 添加)是:

... If you are talking about adding ": QueryBuilder" declaration for PHP 7.x -- the "Php Inspections (EA Extended)" plugin has such intentions/quick fixes; not sure if PhpStorm has the same/similar out of the box.