Skip to content

Commit

Permalink
docs: fix var type
Browse files Browse the repository at this point in the history
  • Loading branch information
faytekin committed Aug 19, 2021
1 parent da3096c commit 0c40d22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Zip.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ class Zip {
/**
* Supported skip modes
*
* @var bool
* @var array
*/
private $supported_skip_modes = array("HIDDEN", "ZANYSOFT", "ALL", "NONE");
private $supported_skip_modes = ["HIDDEN", "ALL", "NONE"];

/**
* Mask for the extraction folder (if it should be created)
Expand Down

0 comments on commit 0c40d22

Please sign in to comment.