1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

Minor, fix old call to setOptions() introduced out of order.

Auditors: codeblock
This commit is contained in:
epriestley 2013-01-09 08:15:18 -08:00
parent 71b5d8f584
commit bc2db90f61

View file

@ -29,7 +29,7 @@ final class PhabricatorPHDConfigOptions
"You can raise this if you have a task backlog, or explicitly ".
"launch more with 'phd launch <N> taskmaster'.")),
$this->newOption('phd.verbose', 'bool', false)
->setOptions(
->setBoolOptions(
array(
pht("Verbose mode"),
pht("Normal mode"),
@ -42,7 +42,7 @@ final class PhabricatorPHDConfigOptions
"mode with 'phd debug' are always launched in verbose mode. See ".
"also 'phd.trace'.")),
$this->newOption('phd.trace', 'bool', false)
->setOptions(
->setBoolOptions(
array(
pht("Trace mode"),
pht("Normal mode"),