diff options
author | Remi Collet <remi@remirepo.net> | 2019-04-25 10:41:04 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-04-25 10:41:04 +0200 |
commit | 111b4609571d4b8834e6f9c8359b8188cfe77524 (patch) | |
tree | a1f74f36bd2862ab28e53d45f9388a722fe1b2d1 /Autoload-php53.patch | |
parent | 66a008c9478acbb33886c593bfd78e8a175d24e3 (diff) |
- update to 1.25.5
- drop patch merged upstream
Diffstat (limited to 'Autoload-php53.patch')
-rw-r--r-- | Autoload-php53.patch | 22 |
1 files changed, 0 insertions, 22 deletions
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 <remi@remirepo.net> -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); |