call static instead of self on protected method

This commit is contained in:
arthur 2019-04-09 10:55:43 +02:00
parent 1534dc23c3
commit 2045e52db7
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ class Html
$newElement = $element; $newElement = $element;
} }
self::parseChildNodes($node, $newElement, $styles, $data); static::parseChildNodes($node, $newElement, $styles, $data);
} }
/** /**