1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Correct a method signature in DifferentialDraftField

Summary:
Ref T12190. See <https://discourse.phabricator-community.org/t/exception-preventing-access-to-differential-application/606>.

(I have a followup to fix the root issue.)

Test Plan: Loaded Differential with an eye on the error log in PHP7, no longer saw warnings.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T12190

Differential Revision: https://secure.phabricator.com/D18723
This commit is contained in:
epriestley 2017-10-23 10:03:56 -07:00
parent 157f47cd14
commit e3a48dde1d

View file

@ -24,7 +24,7 @@ final class DifferentialDraftField
return true;
}
public function renderPropertyViewValue() {
public function renderPropertyViewValue(array $handles) {
return null;
}