假设我有以下课程:
namespace Acme\SuperBundle\Resources;
use \DOMDocument;
/**
* Class XMLAnswerParser
* @package Acme\SuperBundle\Resources
* @author Quant
* @param \DOMDocument $dom
*/
class XMLAnswerParser
{
public $dom;
private $profile;
// a whole lot of things
protected function checkDOM()
{
$this->dom->
而且我希望任何 IDE 都能提示我知道 $dom 属性是一个 DOMDocument。不知何故,这在我的 IDE phpstorm 中不起作用。我对班级的文档做错了吗?
该代码不包含任何错误,以防您提出要求。