From bee1e09fd13086dab42f11cb54d489e7e7d5a0aa Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 10 Sep 2014 06:35:25 -0700 Subject: [PATCH] Remove getPHID() from PhabricatorMentionableInterface Summary: Some versions of PHP aren't very happy about both interfaces and superclasses defining a method. Just remove it from MentionableInterface and leave it as implicit. Auditors: btrahan --- .../interface/PhabricatorMentionableInterface.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/applications/transactions/interface/PhabricatorMentionableInterface.php b/src/applications/transactions/interface/PhabricatorMentionableInterface.php index 864d76165e..5be500af3c 100644 --- a/src/applications/transactions/interface/PhabricatorMentionableInterface.php +++ b/src/applications/transactions/interface/PhabricatorMentionableInterface.php @@ -5,8 +5,4 @@ * - actually TYPE_EDGE transactions that add "mentioned" edges - to the * implementing object. */ -interface PhabricatorMentionableInterface { - - public function getPHID(); - -} +interface PhabricatorMentionableInterface {}