mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
3fca1b2d2d
Summary: I think these got caught in the crossfire between Conduit and Applications. Ref T5655. Auditors: joshuaspence
10 lines
216 B
PHP
10 lines
216 B
PHP
<?php
|
|
|
|
abstract class RepositoryConduitAPIMethod extends ConduitAPIMethod {
|
|
|
|
final public function getApplication() {
|
|
return PhabricatorApplication::getByClass(
|
|
'PhabricatorDiffusionApplication');
|
|
}
|
|
|
|
}
|