diff options
author | Marcus Boerger <helly@php.net> | 2008-08-01 06:16:35 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2008-08-01 06:16:35 +0000 |
commit | 152e4273d1d990a574ec038f3cfd6917ef363f7e (patch) | |
tree | 12c1379ec93faf00920c385fcea5f4b0485afdca /ext/phar/package.php | |
parent | d29fba1678c8f88a66806834ed5b7d5b7c8b155e (diff) | |
download | php-git-152e4273d1d990a574ec038f3cfd6917ef363f7e.tar.gz |
- Consistency rocks: Make all lines start with tabs for indentation
# Just as anythign else we do.
# Also saves about ~0.5k in phar.phar
Diffstat (limited to 'ext/phar/package.php')
-rw-r--r-- | ext/phar/package.php | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/ext/phar/package.php b/ext/phar/package.php index f4d63ae21d..d7d81e2e6a 100644 --- a/ext/phar/package.php +++ b/ext/phar/package.php @@ -53,29 +53,29 @@ require_once 'PEAR/PackageFileManager2.php'; PEAR::setErrorHandling(PEAR_ERROR_DIE); $options = array( - 'filelistgenerator' => 'CVS', - 'changelogoldtonew' => false, - 'simpleoutput' => true, - 'baseinstalldir' => '/', - 'packagedirectory' => dirname(__FILE__), - 'packagefile' => 'package.xml', - 'clearcontents' => true, - 'ignore' => array('package*.php', 'package*.xml'), - 'dir_roles' => array( - 'docs' => 'doc', - 'examples' => 'doc', - 'tests' => 'test', - 'phar' => 'src', - ), - 'exceptions' => array( - 'CREDITS' => 'doc', - 'EXPERIMENTAL' => 'doc', - 'LICENSE' => 'doc', - 'Makefile.frag' => 'src', - 'phar_path_check.re' => 'src', - 'TODO' => 'doc', - 'phar.phar' => 'script', - ), + 'filelistgenerator' => 'CVS', + 'changelogoldtonew' => false, + 'simpleoutput' => true, + 'baseinstalldir' => '/', + 'packagedirectory' => dirname(__FILE__), + 'packagefile' => 'package.xml', + 'clearcontents' => true, + 'ignore' => array('package*.php', 'package*.xml'), + 'dir_roles' => array( + 'docs' => 'doc', + 'examples' => 'doc', + 'tests' => 'test', + 'phar' => 'src', + ), + 'exceptions' => array( + 'CREDITS' => 'doc', + 'EXPERIMENTAL' => 'doc', + 'LICENSE' => 'doc', + 'Makefile.frag' => 'src', + 'phar_path_check.re' => 'src', + 'TODO' => 'doc', + 'phar.phar' => 'script', + ), ); $package = PEAR_PackageFileManager2::importOptions(dirname(__FILE__) . '/package.xml', $options); @@ -100,9 +100,9 @@ $package->setNotes("\n$notes\n"); $package->generateContents(); if (isset($_GET['make']) || (isset($_SERVER['argv']) && @$_SERVER['argv'][1] == 'make')) { - $package->writePackageFile(); + $package->writePackageFile(); } else { - $package->debugPackageFile(); + $package->debugPackageFile(); } ?> |