From 111b4609571d4b8834e6f9c8359b8188cfe77524 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 25 Apr 2019 10:41:04 +0200 Subject: - update to 1.25.5 - drop patch merged upstream --- Autoload-php53.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 Autoload-php53.patch (limited to 'Autoload-php53.patch') diff --git a/Autoload-php53.patch b/Autoload-php53.patch deleted file mode 100644 index 0ce1961..0000000 --- a/Autoload-php53.patch +++ /dev/null @@ -1,22 +0,0 @@ -From d8f950ded329f8a8715b8cbe114cd9c1123e0126 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Wed, 24 Apr 2019 13:58:37 +0200 -Subject: [PATCH] restore PHP 5.3 compatibility - ---- - src/Application.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/Application.php b/src/Application.php -index 4d883ba..9f14aa6 100644 ---- a/src/Application.php -+++ b/src/Application.php -@@ -86,7 +86,7 @@ private function runCollector() { - unset($scanner); - } else { - $file = new \SplFileInfo($directory); -- $filter = $this->factory->getFilter(new \ArrayIterator([$file])); -+ $filter = $this->factory->getFilter(new \ArrayIterator(array($file))); - foreach($filter as $file) { - $this->logger->log('Scanning file ' . $file . "\n"); - $collector->processFile($file); -- cgit