From e3a48dde1d5b95df4eb0ea1763a6baa7576e418f Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 23 Oct 2017 10:03:56 -0700 Subject: [PATCH] Correct a method signature in DifferentialDraftField Summary: Ref T12190. See . (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 --- .../differential/customfield/DifferentialDraftField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/differential/customfield/DifferentialDraftField.php b/src/applications/differential/customfield/DifferentialDraftField.php index e37d622a33..e7ed2bedb2 100644 --- a/src/applications/differential/customfield/DifferentialDraftField.php +++ b/src/applications/differential/customfield/DifferentialDraftField.php @@ -24,7 +24,7 @@ final class DifferentialDraftField return true; } - public function renderPropertyViewValue() { + public function renderPropertyViewValue(array $handles) { return null; }