mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 13:22:42 +01:00
Fix some missing renames of Application classes
Summary: I think these got caught in the crossfire between Conduit and Applications. Ref T5655. Auditors: joshuaspence
This commit is contained in:
parent
9700589279
commit
3fca1b2d2d
13 changed files with 13 additions and 13 deletions
|
@ -3,7 +3,7 @@
|
|||
abstract class AuditConduitAPIMethod extends ConduitAPIMethod {
|
||||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass('PhabricatorApplicationAudit');
|
||||
return PhabricatorApplication::getByClass('PhabricatorAuditApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
abstract class ChatLogConduitAPIMethod extends ConduitAPIMethod {
|
||||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass('PhabricatorApplicationChatLog');
|
||||
return PhabricatorApplication::getByClass('PhabricatorChatLogApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ abstract class DiffusionConduitAPIMethod extends ConduitAPIMethod {
|
|||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass(
|
||||
'PhabricatorApplicationDiffusion');
|
||||
'PhabricatorDiffusionApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
abstract class FeedConduitAPIMethod extends ConduitAPIMethod {
|
||||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass('PhabricatorApplicationFeed');
|
||||
return PhabricatorApplication::getByClass('PhabricatorFeedApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
abstract class FileConduitAPIMethod extends ConduitAPIMethod {
|
||||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass('PhabricatorApplicationFiles');
|
||||
return PhabricatorApplication::getByClass('PhabricatorFilesApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
abstract class MacroConduitAPIMethod extends ConduitAPIMethod {
|
||||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass('PhabricatorApplicationMacro');
|
||||
return PhabricatorApplication::getByClass('PhabricatorMacroApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
abstract class NuanceConduitAPIMethod extends ConduitAPIMethod {
|
||||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass('PhabricatorApplicationNuance');
|
||||
return PhabricatorApplication::getByClass('PhabricatorNuanceApplication');
|
||||
}
|
||||
|
||||
public function getMethodStatus() {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
abstract class OwnersConduitAPIMethod extends ConduitAPIMethod {
|
||||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass('PhabricatorApplicationOwners');
|
||||
return PhabricatorApplication::getByClass('PhabricatorOwnersApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
abstract class PhameConduitAPIMethod extends ConduitAPIMethod {
|
||||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass('PhabricatorApplicationPhame');
|
||||
return PhabricatorApplication::getByClass('PhabricatorPhameApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ abstract class PhragmentConduitAPIMethod extends ConduitAPIMethod {
|
|||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass(
|
||||
'PhabricatorApplicationPhragment');
|
||||
'PhabricatorPhragmentApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ abstract class PhrequentConduitAPIMethod extends ConduitAPIMethod {
|
|||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass(
|
||||
'PhabricatorApplicationPhrequent');
|
||||
'PhabricatorPhrequentApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ abstract class RepositoryConduitAPIMethod extends ConduitAPIMethod {
|
|||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass(
|
||||
'PhabricatorApplicationDiffusion');
|
||||
'PhabricatorDiffusionApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ abstract class SlowvoteConduitAPIMethod extends ConduitAPIMethod {
|
|||
|
||||
final public function getApplication() {
|
||||
return PhabricatorApplication::getByClass(
|
||||
'PhabricatorApplicationSlowvote');
|
||||
'PhabricatorSlowvoteApplication');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue