是否可以在PHPStorm中使用不同的对象类型键入提示数组,即:
public function getThings()
{
return array (new Thing(), new OtherThing(), new SomethingElse());
}
即使在构建数组之前分别声明它们似乎也不起作用.
解决方法:
您可以使用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());
}
这只会为您提供有关类从父类或接口扩展或实现的类型的提示.
希望对您有所帮助!