Skip to content

Commit 2d31b28

Browse files
committed
QA: Fix @test references, APIdocs WS
1 parent b25b215 commit 2d31b28

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

src/main/php/io/archive/zip/ZipFile.class.php

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -30,26 +30,26 @@
3030
* }
3131
* ```
3232
*
33-
* @test xp://net.xp_framework.unittest.io.archive.vendors.InfoZipZipFileTest
34-
* @test xp://net.xp_framework.unittest.io.archive.vendors.JarFileTest
35-
* @test xp://net.xp_framework.unittest.io.archive.vendors.JavaZipFileTest
36-
* @test xp://net.xp_framework.unittest.io.archive.vendors.Java7ZipFileTest
37-
* @test xp://net.xp_framework.unittest.io.archive.vendors.PHPZipFileTest
38-
* @test xp://net.xp_framework.unittest.io.archive.vendors.SevenZipFileTest
39-
* @test xp://net.xp_framework.unittest.io.archive.vendors.WinRARZipFileTest
40-
* @test xp://net.xp_framework.unittest.io.archive.vendors.WindowsZipFileTest
41-
* @test xp://net.xp_framework.unittest.io.archive.vendors.XpZipFileTest
42-
* @test xp://net.xp_framework.unittest.io.archive.MalformedZipFileTest
43-
* @test xp://net.xp_framework.unittest.io.archive.ZipFileTest
44-
* @see http://www.pkware.com/documents/casestudies/APPNOTE.TXT
33+
* @test io.archive.zip.unittest.vendors.InfoZipZipFileTest
34+
* @test io.archive.zip.unittest.vendors.JarFileTest
35+
* @test io.archive.zip.unittest.vendors.JavaZipFileTest
36+
* @test io.archive.zip.unittest.vendors.Java7ZipFileTest
37+
* @test io.archive.zip.unittest.vendors.PHPZipFileTest
38+
* @test io.archive.zip.unittest.vendors.SevenZipFileTest
39+
* @test io.archive.zip.unittest.vendors.WinRARZipFileTest
40+
* @test io.archive.zip.unittest.vendors.WindowsZipFileTest
41+
* @test io.archive.zip.unittest.vendors.XpZipFileTest
42+
* @test io.archive.zip.unittest.MalformedZipFileTest
43+
* @test io.archive.zip.unittest.ZipFileTest
44+
* @see http://www.pkware.com/documents/casestudies/APPNOTE.TXT
4545
*/
4646
abstract class ZipFile {
4747

4848
/**
4949
* Creation constructor
5050
*
51-
* @param string|io.Channel|io.streams.OutputStream $arg
52-
* @return io.archive.zip.ZipArchiveWriter
51+
* @param string|io.Path|io.Channel|io.streams.OutputStream $arg
52+
* @return io.archive.zip.ZipArchiveWriter
5353
*/
5454
public static function create($arg) {
5555
if ($arg instanceof Channel) {
@@ -64,8 +64,8 @@ public static function create($arg) {
6464
/**
6565
* Read constructor
6666
*
67-
* @param string|io.Channel|io.streams.InputStream $arg
68-
* @return io.archive.zip.ZipArchiveReader
67+
* @param string|io.Path|io.Channel|io.streams.InputStream $arg
68+
* @return io.archive.zip.ZipArchiveReader
6969
*/
7070
public static function open($arg) {
7171
if ($arg instanceof Channel) {

0 commit comments

Comments
 (0)