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:
parent
71b5d8f584
commit
bc2db90f61
1 changed files with 2 additions and 2 deletions
|
@ -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"),
|
||||
|
|
Loading…
Reference in a new issue