format check

This commit is contained in:
csk83 2020-08-31 11:56:21 +08:00
parent d42854ddb6
commit 9a59cf0590
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
}