1: <?php
2: /**
3: * Copyright (C) Apis Networks, Inc - All Rights Reserved.
4: *
5: * Unauthorized copying of this file, via any medium, is
6: * strictly prohibited without consent. Any dissemination of
7: * material herein is prohibited.
8: *
9: * For licensing inquiries email <licensing@apisnetworks.com>
10: *
11: * Written by Matt Saladna <matt@apisnetworks.com>, May 2017
12: */
13:
14: /**
15: * @package Compression
16: */
17: interface IArchive
18: {
19: public static function extract_files($archive, $dest, array $file = null, array $opts = null);
20:
21: public static function list_files($archive, array $opts = null);
22: }
23:
24: ?>
25: