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