summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Jansen <mj@php.net>2004-03-18 12:23:57 +0000
committerMartin Jansen <mj@php.net>2004-03-18 12:23:57 +0000
commitba7d6efe7ba49682c8774af06537ca7c57858d0c (patch)
tree7dc9dbf2ccec0798bae840f444e5bce2fa4dda0f
parent254456a4a68d28b7c6d63facde165f140ca4f602 (diff)
downloadphp-git-ba7d6efe7ba49682c8774af06537ca7c57858d0c.tar.gz
* Converting tabs to spaces
-rw-r--r--pear/PEAR/Command/Mirror.php32
1 files changed, 17 insertions, 15 deletions
diff --git a/pear/PEAR/Command/Mirror.php b/pear/PEAR/Command/Mirror.php
index 4a6b43e1fb..267c1e8328 100644
--- a/pear/PEAR/Command/Mirror.php
+++ b/pear/PEAR/Command/Mirror.php
@@ -76,21 +76,23 @@ class PEAR_Command_Mirror extends PEAR_Command_Common
*/
function doDownloadAll($command, $options, $params)
{
- $this->config->set("php_dir", ".");
- $remote = &new PEAR_Remote($this->config);
- $remoteInfo = $remote->call("package.listAll");
- if(PEAR::isError($remoteInfo)) {
- return $remoteInfo;
- }
- $cmd = &PEAR_Command::factory("download", $this->config);
- if(PEAR::isError($cmd)) {
- return $cmd;
- }
- foreach($remoteInfo as $pkgn=>$pkg) {
- // error handling not neccesary, because
- // already done by the download command
- $cmd->run("download", array(), array($pkgn));
- }
+ $this->config->set("php_dir", ".");
+ $remote = &new PEAR_Remote($this->config);
+ $remoteInfo = $remote->call("package.listAll");
+ if (PEAR::isError($remoteInfo)) {
+ return $remoteInfo;
+ }
+ $cmd = &PEAR_Command::factory("download", $this->config);
+ if (PEAR::isError($cmd)) {
+ return $cmd;
+ }
+ foreach ($remoteInfo as $pkgn => $pkg) {
+ /**
+ * Error handling not neccesary, because already done by
+ * the download command
+ */
+ $cmd->run("download", array(), array($pkgn));
+ }
return true;
}