mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Underp ReleephDefaultFieldSelector
Summary: Oops. Functions only return stuff when you call the `return()` function on the `lvalue`. Test Plan: Use `ReleephDefaultFieldSelector` is the field selector in a test Releeph project. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5362
This commit is contained in:
parent
f04d3c9e94
commit
c55b866d3c
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ final class ReleephDefaultFieldSelector extends ReleephFieldSelector {
|
|||
}
|
||||
|
||||
public function arrangeFieldsForSelectForm(array $fields) {
|
||||
self::selectFields($fields, array(
|
||||
return self::selectFields($fields, array(
|
||||
'ReleephStatusFieldSpecification',
|
||||
'ReleephSeverityFieldSpecification',
|
||||
'ReleephRequestorFieldSpecification',
|
||||
|
@ -62,7 +62,7 @@ final class ReleephDefaultFieldSelector extends ReleephFieldSelector {
|
|||
}
|
||||
|
||||
public function sortFieldsForCommitMessage(array $fields) {
|
||||
self::selectFields($fields, array(
|
||||
return self::selectFields($fields, array(
|
||||
'ReleephCommitMessageFieldSpecification',
|
||||
'ReleephRequestorFieldSpecification',
|
||||
'ReleephIntentFieldSpecification',
|
||||
|
|
Loading…
Reference in a new issue