Fix bad method signature

Summary: This ended up having a different signature; the discrepancy can cause a warning.

Test Plan: No more warning.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D11971
This commit is contained in:
epriestley
2015-03-05 10:43:26 -08:00
parent a43e7b292c
commit 8df36b8f0c
2 changed files with 14 additions and 12 deletions

View File

@@ -186,7 +186,9 @@ abstract class PhabricatorApplicationTransactionEditor
return $this->unmentionablePHIDMap;
}
protected function shouldEnableMentions() {
protected function shouldEnableMentions(
PhabricatorLiskDAO $object,
array $xactions) {
return true;
}