1
0
Fork 0

Fixed docblocks

pull/7994/head
Andreas Schempp 2019-02-25 08:01:38 +01:00
parent 4d85e217c3
commit 9de07bed1b
1 changed files with 4 additions and 3 deletions

View File

@ -20,8 +20,8 @@ class Zip
/** /**
* Finds the path to a file inside a ZIP archive. * Finds the path to a file inside a ZIP archive.
* *
* @param $pathToZip * @param string $pathToZip
* @param $filename * @param string $filename
* *
* @return string|null * @return string|null
*/ */
@ -55,7 +55,8 @@ class Zip
* Find a file by name, returning the one that has the shortest path. * Find a file by name, returning the one that has the shortest path.
* *
* @param \ZipArchive $zip * @param \ZipArchive $zip
* @param string $filename * @param string $filename
*
* @return bool|int * @return bool|int
*/ */
private static function locateFile(\ZipArchive $zip, $filename) private static function locateFile(\ZipArchive $zip, $filename)