Example #1
0
 /**
  * Constructor
  *
  * @param    null $fileset
  */
 public function __construct($fileset = null)
 {
     parent::__construct($fileset);
     // Expand/dereference symbolic links in order to also include nested symlinks to the zipfile.
     // This is also required in order to prevent zipping of unwanted files, else symlinked files
     // are detected as directories and our checks within main() fails!
     $this->setExpandSymbolicLinks(true);
 }