mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-23 20:19:03 +01:00
10 lines
200 B
PHP
10 lines
200 B
PHP
|
<?php
|
||
|
|
||
|
abstract class AuditConduitAPIMethod extends ConduitAPIMethod {
|
||
|
|
||
|
final public function getApplication() {
|
||
|
return PhabricatorApplication::getByClass('PhabricatorApplicationAudit');
|
||
|
}
|
||
|
|
||
|
}
|