From 2045e52db71c7e954c334dc28947a8756654e29f Mon Sep 17 00:00:00 2001 From: arthur Date: Tue, 9 Apr 2019 10:55:43 +0200 Subject: [PATCH] call static instead of self on protected method --- src/PhpWord/Shared/Html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PhpWord/Shared/Html.php b/src/PhpWord/Shared/Html.php index f2710ea1..c484e08f 100644 --- a/src/PhpWord/Shared/Html.php +++ b/src/PhpWord/Shared/Html.php @@ -192,7 +192,7 @@ class Html $newElement = $element; } - self::parseChildNodes($node, $newElement, $styles, $data); + static::parseChildNodes($node, $newElement, $styles, $data); } /**