Restore PHP 5.3 compat

composer.json for TCPDF claims support for PHP 5.3 and short array syntax is not in this old version. This undos commit 865cd727fc29b080e8da1959566de5078a605c73 in char101:patch-1
This commit is contained in:
Niklas 2018-02-21 16:10:37 +01:00 committed by GitHub
parent 3527098537
commit 278e831f64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15192,7 +15192,7 @@ class TCPDF {
* @since 3.1.000 (2008-06-09)
* @public
*/
public function write1DBarcode($code, $type, $x='', $y='', $w='', $h='', $xres='', $style=[], $align='') {
public function write1DBarcode($code, $type, $x='', $y='', $w='', $h='', $xres='', $style=array(), $align='') {
if (TCPDF_STATIC::empty_string(trim($code))) {
return;
}