0

我正在为 php 尝试 phpstan 和 psalm,我想编写一个类,它可以采用不同类型的对象并根据要调用的工厂返回正确的对象。

我想要实现的是,如果我将 A 类型的对象传递给 Transformer,编译器就会知道将返回 SuperA。

虽然我可以在 psalm 中没有错误(尽管我仍然得到 SuperA|SuperB 而不是正确的对象),但我在 phpstan 中传递的内容出现错误。

https://phpstan.org/r/4fce6f46-7aea-4f73-8259-df895910f064

https://psalm.dev/r/352e64ea95

有没有办法做到这一点?

4

1 回答 1

1

所以你想得到基于 A 的 SuperA 和基于 B 的 SuperB。

我会像这样将 A+SuperA 和 B+SuperB 连接在一起:https ://phpstan.org/r/28e4e6ec-887b-4735-9b34-c034b4fa04ec

/**
 * @template TSuper of Super
 */
interface Common
{
}

/**
 * @implements Common<SuperA>
 */ 
class A implements Common
{
}

/**
 * @implements Common<SuperB>
 */ 
class B implements Common
{
}

interface Super
{
}

class SuperA implements Super
{
    public function callA(): void{}
}

class SuperB implements Super
{
    public function callB(): void{}
}

然后工厂需要有这个签名:

/**
 * @template T of Super
 * @param Common<T> $obj
 * @return T
 */
public function transform($obj)
于 2020-09-14T15:04:59.700 回答