diff options
author | Paul Duncan <pabs@pablotron.org> | 2018-09-02 18:58:07 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2018-09-03 09:54:46 -0400 |
commit | d70e1b519d27e5b0090412c566bee79d57f7838e (patch) | |
tree | 147e43270069957babd755c984bc26ab31f0f22f /src | |
parent | b86d48168233bc9e7ef9d0f92298c7f2a5554c85 (diff) | |
download | zipstream-php-d70e1b519d27e5b0090412c566bee79d57f7838e.tar.bz2 zipstream-php-d70e1b519d27e5b0090412c566bee79d57f7838e.zip |
misc fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/ZipStream.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/ZipStream.php b/src/ZipStream.php index 4b2e8d5..a3a8313 100644 --- a/src/ZipStream.php +++ b/src/ZipStream.php @@ -1350,15 +1350,12 @@ final class ZipStream { $args = array_merge(self::$FILE_DEFAULTS, $args); try { - # get compression method - $method = $this->get_entry_method($args); - # create new entry $e = new Entry( $this->output, $this->pos, $dst_path, - $method, + $this->get_entry_method($args), $this->get_entry_time($args), $args['comment'] ); @@ -1455,7 +1452,7 @@ final class ZipStream { public static function send( string $name, callable $cb, - array &$args = [] + array $args = [] ) : int { # create archive $zip = new self($name, $args); |