Merge pull request #1611 from zearg/develop

call static instead of self on protected method
This commit is contained in:
troosan 2019-04-16 20:40:48 +02:00 committed by GitHub
commit b1903524b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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