大多数
@L_403_0@ IDE依靠PHPdoc来获取关于表达式类型的提示.然而,我经常使用这种模式,似乎没有涵盖:
原文链接:https://www.f2er.com/php/139380.htmlclass Control { private $label = ''; /** @return ??? */ public static function Make(){ return new static(); } /** @return ??? */ public function WithLabel($value){ $this->label = $value; return $this; } /** @return void */ public function Render(){ /* ... */ } } class TextBox extends Control { private $text = ''; /** @return ??? */ public function WithText($text){ $this->width = $text; return $this; } }
现在我可以使用这样的类:
TextBox::Make() // <-- late static binding,returns TextBox ->WithLabel('foo') // <-- late dynamic binding,returns TextBox ->WithText('bar') // <-- normal binding,returns TextBox ->Render();
有什么办法用某些东西替换“???”,以便打字信息正确吗?