在PHPStorm中是否可以键入提示具有不同对象类型的数组,即:
public function getThings()
{
return array (new Thing(), new OtherThing(), new SomethingElse());
}
在构建数组之前,甚至单独声明它们似乎不起作用。
答案 0 :(得分:4)
你可以使用phpdocs让phpstorm接受多种类型的数组,如下所示:
/**
* @return Thing[] | OtherThing[] | SomethingElse[]
*
*/
public function getThings()
{
return array (new Thing(), new OtherThing(), new SomethingElse());
}
这种技术将使phpstorm认为数组可以包含任何这些对象,因此它将为您提供所有三个类型的提示。 或者,您可以使所有对象扩展另一个对象或实现一个接口,并输入一次像对象或接口一样的提示:
/**
* @return ExtensionClass[]
*
*/
public function getThings()
{
return array (new Thing(), new OtherThing(), new SomethingElse());
}
这将为您提供类型提示,仅提供类从父类或接口扩展或实现的内容。
我希望这有帮助!
答案 1 :(得分:1)
这在PHPDoc标准
中有所描述https://github.com/phpDocumentor/fig-standards/blob/master/proposed/phpdoc.md#713-param
/**
* Initializes this class with the given options.
*
* @param array $options {
* @var bool $required Whether this element is required
* @var string $label The display name for this element
* }
*/
public function __construct(array $options = array())
{
<...>
}