From 9de07bed1b3f4b96e0da90f2caab525073cf5048 Mon Sep 17 00:00:00 2001 From: Andreas Schempp Date: Mon, 25 Feb 2019 08:01:38 +0100 Subject: [PATCH] Fixed docblocks --- src/Composer/Util/Zip.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Composer/Util/Zip.php b/src/Composer/Util/Zip.php index 1dfd99d39..a14eea924 100644 --- a/src/Composer/Util/Zip.php +++ b/src/Composer/Util/Zip.php @@ -20,8 +20,8 @@ class Zip /** * Finds the path to a file inside a ZIP archive. * - * @param $pathToZip - * @param $filename + * @param string $pathToZip + * @param string $filename * * @return string|null */ @@ -55,7 +55,8 @@ class Zip * Find a file by name, returning the one that has the shortest path. * * @param \ZipArchive $zip - * @param string $filename + * @param string $filename + * * @return bool|int */ private static function locateFile(\ZipArchive $zip, $filename)