fix format for coverage

This commit is contained in:
Libor M 2020-10-18 07:45:57 +02:00
parent 0edcab0da6
commit eaf2212aa8
2 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,6 @@ matrix:
dist: xenial dist: xenial
- php: 5.5 - php: 5.5
dist: xenial dist: xenial
- php: 7.0
allow_failures: allow_failures:
- php: nightly - php: nightly

View File

@ -109,6 +109,7 @@ abstract class AbstractContainer extends AbstractElement
} else { } else {
// All other elements // 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); return call_user_func_array(array($this, 'addElement'), $args);
} }
} }