commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / packages / PHP / Beautifier / Batch / Output / FilesBz2.php
1 <?php
2 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
3 /**
4 * Handle the batch process for one/multiple php files to one tar bzip2 file
5 *
6 * PHP version 5
7 *
8 * LICENSE: This source file is subject to version 3.0 of the PHP license
9 * that is available through the world-wide-web at the following URI:
10 * http://www.php.net/license/3_0.txt. If you did not receive a copy of
11 * the PHP License and are unable to obtain it through the web, please
12 * send a note to license@php.net so we can mail you a copy immediately.
13 * @category PHP
14 * @package PHP_Beautifier
15 * @subpackage Batch
16 * @author Claudio Bustos <cdx@users.sourceforge.com>
17 * @copyright 2004-2006 Claudio Bustos
18 * @link http://pear.php.net/package/PHP_Beautifier
19 * @link http://beautifyphp.sourceforge.net
20 * @license http://www.php.net/license/3_0.txt PHP License 3.0
21 * @version CVS: $Id:$
22 */
23 /**
24 * Include PHP_Beautifier_Batch_FilesGz
25 */
26 require_once 'FilesTar.php';
27 /**
28 * Handle the batch process for one/multiple php files to one tar bzip2 file
29 *
30 * @category PHP
31 * @package PHP_Beautifier
32 * @author Claudio Bustos <cdx@users.sourceforge.com>
33 * @copyright 2004-2006 Claudio Bustos
34 * @link http://pear.php.net/package/PHP_Beautifier
35 * @link http://beautifyphp.sourceforge.net
36 * @license http://www.php.net/license/3_0.txt PHP License 3.0
37 * @version Release: 0.1.14
38 */
39 class PHP_Beautifier_Batch_Output_FilesBz2 extends PHP_Beautifier_Batch_Output_FilesTar {
40 protected $sCompress = 'bz2';
41 protected $sExt = 'tar.bz2';
42
43 }
44 ?>