replace php > 5.4 code

This commit is contained in:
Frédéric FRANCE
2018-11-15 20:35:40 +01:00
parent caa080f103
commit 482c6efdd9

View File

@@ -172,7 +172,7 @@ class Swift_CharacterStream_ArrayCharacterStream implements Swift_CharacterStrea
}
$this->offset += ($i - $this->offset); // Limit function calls
return array_merge(...$arrays);
return call_user_func_array('array_merge', $arrays);
}
/**