diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-12-10 05:22:37 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-12-10 05:22:37 +0000 |
| commit | 0ef2dd7175248e1116a867e0a86579d9f6ca16eb (patch) | |
| tree | 452fc6e3391544b209ea075d587935e7ab42e714 /vendor/thecodingmachine/safe/generated/zip.php | |
| parent | f15db7b9610467aa29f6441361fdc4e6c90deaa1 (diff) | |
| parent | 3860435cba19cf2cd9c86dcc5d8938198c6b6736 (diff) | |
Merge branch 'feature/alpine_3.21-and-php_8.4' into 'master'
Bump to Alpine 3.21 and PHP 8.4, raise the minimum to PHP 8.2
See merge request tt-rss/tt-rss!85
Diffstat (limited to 'vendor/thecodingmachine/safe/generated/zip.php')
| -rw-r--r-- | vendor/thecodingmachine/safe/generated/zip.php | 144 |
1 files changed, 0 insertions, 144 deletions
diff --git a/vendor/thecodingmachine/safe/generated/zip.php b/vendor/thecodingmachine/safe/generated/zip.php deleted file mode 100644 index d4097eb16..000000000 --- a/vendor/thecodingmachine/safe/generated/zip.php +++ /dev/null @@ -1,144 +0,0 @@ -<?php - -namespace Safe; - -use Safe\Exceptions\ZipException; - -/** - * Closes the specified directory entry. - * - * @param resource $zip_entry A directory entry previously opened zip_entry_open. - * @throws ZipException - * - */ -function zip_entry_close($zip_entry): void -{ - error_clear_last(); - $result = \zip_entry_close($zip_entry); - if ($result === false) { - throw ZipException::createFromPhpError(); - } -} - - -/** - * Returns the compressed size of the specified directory entry. - * - * @param resource $zip_entry A directory entry returned by zip_read. - * @return int The compressed size. - * @throws ZipException - * - */ -function zip_entry_compressedsize($zip_entry): int -{ - error_clear_last(); - $result = \zip_entry_compressedsize($zip_entry); - if ($result === false) { - throw ZipException::createFromPhpError(); - } - return $result; -} - - -/** - * Returns the compression method of the directory entry specified - * by zip_entry. - * - * @param resource $zip_entry A directory entry returned by zip_read. - * @return string The compression method. - * @throws ZipException - * - */ -function zip_entry_compressionmethod($zip_entry): string -{ - error_clear_last(); - $result = \zip_entry_compressionmethod($zip_entry); - if ($result === false) { - throw ZipException::createFromPhpError(); - } - return $result; -} - - -/** - * Returns the actual size of the specified directory entry. - * - * @param resource $zip_entry A directory entry returned by zip_read. - * @return int The size of the directory entry. - * @throws ZipException - * - */ -function zip_entry_filesize($zip_entry): int -{ - error_clear_last(); - $result = \zip_entry_filesize($zip_entry); - if ($result === false) { - throw ZipException::createFromPhpError(); - } - return $result; -} - - -/** - * Returns the name of the specified directory entry. - * - * @param resource $zip_entry A directory entry returned by zip_read. - * @return string The name of the directory entry. - * @throws ZipException - * - */ -function zip_entry_name($zip_entry): string -{ - error_clear_last(); - $result = \zip_entry_name($zip_entry); - if ($result === false) { - throw ZipException::createFromPhpError(); - } - return $result; -} - - -/** - * Opens a directory entry in a zip file for reading. - * - * @param resource $zip_dp A valid resource handle returned by zip_open. - * @param resource $zip_entry A directory entry returned by zip_read. - * @param string $mode Any of the modes specified in the documentation of - * fopen. - * - * Currently, mode is ignored and is always - * "rb". This is due to the fact that zip support - * in PHP is read only access. - * @throws ZipException - * - */ -function zip_entry_open($zip_dp, $zip_entry, string $mode = "rb"): void -{ - error_clear_last(); - $result = \zip_entry_open($zip_dp, $zip_entry, $mode); - if ($result === false) { - throw ZipException::createFromPhpError(); - } -} - - -/** - * Reads from an open directory entry. - * - * @param resource $zip_entry A directory entry returned by zip_read. - * @param int $len The number of bytes to return. - * - * This should be the uncompressed length you wish to read. - * @return string Returns the data read, empty string on end of a file. - * @throws ZipException - * - */ -function zip_entry_read($zip_entry, int $len = 1024): string -{ - error_clear_last(); - $result = \zip_entry_read($zip_entry, $len); - if ($result === false) { - throw ZipException::createFromPhpError(); - } - return $result; -} |