mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-26 21:49:08 +01:00
13 lines
262 B
PHP
13 lines
262 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Allow infrastructure to automagically create "mentioned" transactions
|
||
|
* - actually TYPE_EDGE transactions that add "mentioned" edges - to the
|
||
|
* implementing object.
|
||
|
*/
|
||
|
interface PhabricatorMentionableInterface {
|
||
|
|
||
|
public function getPHID();
|
||
|
|
||
|
}
|