mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
15 lines
243 B
PHP
15 lines
243 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @group conduit
|
||
|
*/
|
||
|
abstract class ConduitAPI_conpherence_Method
|
||
|
extends ConduitAPIMethod {
|
||
|
|
||
|
public function getApplication() {
|
||
|
return PhabricatorApplication::getByClass(
|
||
|
'PhabricatorApplicationConpherence');
|
||
|
}
|
||
|
|
||
|
}
|