mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-02 15:39:36 +01:00
Summary: I think these got caught in the crossfire between Conduit and Applications. Ref T5655. Auditors: joshuaspence
9 lines
198 B
PHP
9 lines
198 B
PHP
<?php
|
|
|
|
abstract class FeedConduitAPIMethod extends ConduitAPIMethod {
|
|
|
|
final public function getApplication() {
|
|
return PhabricatorApplication::getByClass('PhabricatorFeedApplication');
|
|
}
|
|
|
|
}
|