mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-12 20:34:54 +01:00
Summary: I think these got caught in the crossfire between Conduit and Applications. Ref T5655. Auditors: joshuaspence
10 lines
215 B
PHP
10 lines
215 B
PHP
<?php
|
|
|
|
abstract class PhrequentConduitAPIMethod extends ConduitAPIMethod {
|
|
|
|
final public function getApplication() {
|
|
return PhabricatorApplication::getByClass(
|
|
'PhabricatorPhrequentApplication');
|
|
}
|
|
|
|
}
|