From 9a59cf0590e25b1d018712fd4e6f55fcd1ffe97b Mon Sep 17 00:00:00 2001 From: csk83 Date: Mon, 31 Aug 2020 11:56:21 +0800 Subject: [PATCH] format check --- src/PhpWord/Element/AbstractContainer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/PhpWord/Element/AbstractContainer.php b/src/PhpWord/Element/AbstractContainer.php index 0c773dbe..f9451c8d 100644 --- a/src/PhpWord/Element/AbstractContainer.php +++ b/src/PhpWord/Element/AbstractContainer.php @@ -108,7 +108,8 @@ abstract class AbstractContainer extends AbstractElement } } else { // All other elements - array_unshift($args, $element); // Prepend element name to the beginning of args array + array_unshift($args, $element); + // Prepend element name to the beginning of args array return call_user_func_array(array($this, 'addElement'), $args); } }