Skip to content

Commit 9a59cf0

Browse files
committed
format check
1 parent d42854d commit 9a59cf0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/PhpWord/Element/AbstractContainer.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ public function __call($function, $args)
108108
}
109109
} else {
110110
// All other elements
111-
array_unshift($args, $element); // Prepend element name to the beginning of args array
111+
array_unshift($args, $element);
112+
// Prepend element name to the beginning of args array
112113
return call_user_func_array(array($this, 'addElement'), $args);
113114
}
114115
}

0 commit comments

Comments
 (0)