File tree 4 files changed +17
-12
lines changed
4 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 5
5
bootstrap.php export-ignore
6
6
logo.svg export-ignore
7
7
phpunit.xml export-ignore
8
+ phpunit.xml.dist export-ignore
9
+ psalm.xml export-ignore
10
+ psalm.xml.dist export-ignore
8
11
tests export-ignore
Original file line number Diff line number Diff line change 1
- /vendor
2
- * .iml
3
1
/.idea
4
- /composer.lock
5
- /* .cache
6
2
build /
7
- .phpunit.result.cache
3
+ /vendor
4
+ * .cache
5
+ composer.lock
6
+ psalm.xml
Original file line number Diff line number Diff line change 10
10
<directory name =" src" />
11
11
<ignoreFiles >
12
12
<directory name =" vendor" />
13
- <directory name =" benchmarks" />
14
13
<directory name =" tests" />
15
14
</ignoreFiles >
16
15
</projectFiles >
Original file line number Diff line number Diff line change @@ -49,21 +49,25 @@ public function getHeaderId(): int
49
49
/**
50
50
* Populate data from this array as if it was in local file data.
51
51
*
52
- * @param string $buffer the buffer to read data from
53
- * @param ?ZipEntry $entry
52
+ * @param string $buffer the buffer to read data from
53
+ * @param ZipEntry|null $entry optional zip entry
54
+ *
55
+ * @return UnrecognizedExtraField
54
56
*/
55
- public static function unpackLocalFileData (string $ buffer , ?ZipEntry $ entry = null ): ZipExtraField
57
+ public static function unpackLocalFileData (string $ buffer , ?ZipEntry $ entry = null ): self
56
58
{
57
59
throw new RuntimeException ('Unsupport parse ' );
58
60
}
59
61
60
62
/**
61
63
* Populate data from this array as if it was in central directory data.
62
64
*
63
- * @param string $buffer the buffer to read data from
64
- * @param ?ZipEntry $entry
65
+ * @param string $buffer the buffer to read data from
66
+ * @param ZipEntry|null $entry optional zip entry
67
+ *
68
+ * @return UnrecognizedExtraField
65
69
*/
66
- public static function unpackCentralDirData (string $ buffer , ?ZipEntry $ entry = null ): ZipExtraField
70
+ public static function unpackCentralDirData (string $ buffer , ?ZipEntry $ entry = null ): self
67
71
{
68
72
throw new RuntimeException ('Unsupport parse ' );
69
73
}
You can’t perform that action at this time.
0 commit comments