Enable PHPStan

This commit is contained in:
Jeremy Benoist
2019-02-07 15:51:31 +01:00
parent 6a0f3337a6
commit 74d9cc605a
7 changed files with 151 additions and 121 deletions
+10
View File
@@ -127,4 +127,14 @@ class JSLikeHTMLElement extends \DOMElement
{
return '[' . $this->tagName . ']';
}
public function getInnerHtml()
{
return $this->__get('innerHTML');
}
public function setInnerHtml($value)
{
return $this->__set('innerHTML', $value);
}
}