1 回答

TA貢獻2036條經(jīng)驗 獲得超8個贊
所以你想在A的基礎(chǔ)上得到SuperA,在B的基礎(chǔ)上得到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)
- 1 回答
- 0 關(guān)注
- 173 瀏覽
添加回答
舉報