From b80d61eba60f6e1eafe7a7cf1cb940783421ca19 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 13 Oct 2015 08:49:11 +0200 Subject: php-phpoffice-phpexcel: import from Fedora --- php-phpoffice-phpexcel-pr695-1-8-1-custom.patch | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 php-phpoffice-phpexcel-pr695-1-8-1-custom.patch (limited to 'php-phpoffice-phpexcel-pr695-1-8-1-custom.patch') diff --git a/php-phpoffice-phpexcel-pr695-1-8-1-custom.patch b/php-phpoffice-phpexcel-pr695-1-8-1-custom.patch new file mode 100644 index 0000000..2486dd7 --- /dev/null +++ b/php-phpoffice-phpexcel-pr695-1-8-1-custom.patch @@ -0,0 +1,26 @@ +--- unitTests/Classes/PHPExcel/Reader/XEEValidatorTest.php.ORIG 2015-10-08 14:24:46.586539987 -0400 ++++ unitTests/Classes/PHPExcel/Reader/XEEValidatorTest.php 2015-10-08 14:25:19.824561274 -0400 +@@ -26,9 +26,9 @@ + + public function providerInvalidXML() + { +- $tests = []; ++ $tests = array(); + foreach(glob('rawTestData/Reader/XEETestInvalid*.xml') as $file) { +- $tests[] = [realpath($file), true]; ++ $tests[] = array(realpath($file), true); + } + return $tests; + } +@@ -45,9 +45,9 @@ + + public function providerValidXML() + { +- $tests = []; ++ $tests = array(); + foreach(glob('rawTestData/Reader/XEETestValid*.xml') as $file) { +- $tests[] = [realpath($file), file_get_contents($file)]; ++ $tests[] = array(realpath($file), file_get_contents($file)); + } + return $tests; + } -- cgit