mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-24 15:52:41 +01:00
11 lines
202 B
PHP
11 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
abstract class ConduitAPI_file_Method extends ConduitAPIMethod {
|
||
|
|
||
|
public function getApplication() {
|
||
|
return PhabricatorApplication::getByClass(
|
||
|
'PhabricatorApplicationFiles');
|
||
|
}
|
||
|
|
||
|
}
|