From 05d6b2178542857131011e3e46a8165414abc8aa Mon Sep 17 00:00:00 2001 From: Andreas Schempp Date: Mon, 25 Feb 2019 08:02:04 +0100 Subject: [PATCH] Use self:: for private method --- src/Composer/Util/Zip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Util/Zip.php b/src/Composer/Util/Zip.php index a14eea924..2e0333ac0 100644 --- a/src/Composer/Util/Zip.php +++ b/src/Composer/Util/Zip.php @@ -38,7 +38,7 @@ class Zip return null; } - $foundFileIndex = static::locateFile($zip, $filename); + $foundFileIndex = self::locateFile($zip, $filename); if (false === $foundFileIndex) { $zip->close();