You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically, I can’t change an element’s text with:
$element->nodeValue = ’new value';
but I have to use:
$element->getDecorated()->nodeValue = ’new value';
It’s probably because you implement __call() and __get() methods but not __set() method.
From an email: