1
0
Fork 0
pull/432/head
digitalkaoz 2012-03-10 20:14:54 +01:00
parent a4f6314daa
commit d502065cb7
1 changed files with 6 additions and 6 deletions

View File

@ -352,7 +352,7 @@ class Installer
*/ */
public function setDryRun($dryRun=true) public function setDryRun($dryRun=true)
{ {
$this->dryRun = (boolean)$dryRun; $this->dryRun = (boolean) $dryRun;
return $this; return $this;
} }
@ -365,7 +365,7 @@ class Installer
*/ */
public function setInstallRecommends($installRecommends=true) public function setInstallRecommends($installRecommends=true)
{ {
$this->installRecommends = (boolean)$installRecommends; $this->installRecommends = (boolean) $installRecommends;
return $this; return $this;
} }
@ -378,7 +378,7 @@ class Installer
*/ */
public function setInstallSuggests($installSuggests=true) public function setInstallSuggests($installSuggests=true)
{ {
$this->installSuggests = (boolean)$installSuggests; $this->installSuggests = (boolean) $installSuggests;
return $this; return $this;
} }
@ -391,7 +391,7 @@ class Installer
*/ */
public function setPreferSource($preferSource=true) public function setPreferSource($preferSource=true)
{ {
$this->preferSource = (boolean)$preferSource; $this->preferSource = (boolean) $preferSource;
return $this; return $this;
} }
@ -404,7 +404,7 @@ class Installer
*/ */
public function setUpdate($update=true) public function setUpdate($update=true)
{ {
$this->update = (boolean)$update; $this->update = (boolean) $update;
return $this; return $this;
} }
@ -417,7 +417,7 @@ class Installer
*/ */
public function setVerbose($verbose=true) public function setVerbose($verbose=true)
{ {
$this->verbose = (boolean)$verbose; $this->verbose = (boolean) $verbose;
return $this; return $this;
} }