a99b54535d805abb6e239c6fba0726a06a3005c1
[yaffs-website] / vendor / alchemy / zippy / src / FileStrategy / TBz2FileStrategy.php
1 <?php
2
3 /*
4  * This file is part of Zippy.
5  *
6  * (c) Alchemy <info@alchemy.fr>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Alchemy\Zippy\FileStrategy;
13
14 class TBz2FileStrategy extends AbstractFileStrategy
15 {
16     /**
17      * {@inheritdoc}
18      */
19     protected function getServiceNames()
20     {
21         return array(
22             'Alchemy\\Zippy\\Adapter\\GNUTar\\TarBz2GNUTarAdapter',
23             'Alchemy\\Zippy\\Adapter\\BSDTar\\TarBz2BSDTarAdapter'
24         );
25     }
26
27     /**
28      * {@inheritdoc}
29      */
30     public function getFileExtension()
31     {
32         return 'tbz2';
33     }
34 }