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
9 lines
230 B
PHP
9 lines
230 B
PHP
<?php
|
|
|
|
/**
|
|
* Allow infrastructure to automagically create "mentioned" transactions
|
|
* - actually TYPE_EDGE transactions that add "mentioned" edges - to the
|
|
* implementing object.
|
|
*/
|
|
interface PhabricatorMentionableInterface {}
|