Page MenuHomePhabricator

D9989.diff
No OneTemporary

D9989.diff

diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/src/__phutil_library_map__.php
@@ -1835,7 +1835,7 @@
'PhabricatorNotificationTestController' => 'applications/notification/controller/PhabricatorNotificationTestController.php',
'PhabricatorOAuthClientAuthorization' => 'applications/oauthserver/storage/PhabricatorOAuthClientAuthorization.php',
'PhabricatorOAuthClientAuthorizationQuery' => 'applications/oauthserver/query/PhabricatorOAuthClientAuthorizationQuery.php',
- 'PhabricatorOAuthClientBaseController' => 'applications/oauthserver/controller/client/PhabricatorOAuthClientBaseController.php',
+ 'PhabricatorOAuthClientController' => 'applications/oauthserver/controller/client/PhabricatorOAuthClientController.php',
'PhabricatorOAuthClientDeleteController' => 'applications/oauthserver/controller/client/PhabricatorOAuthClientDeleteController.php',
'PhabricatorOAuthClientEditController' => 'applications/oauthserver/controller/client/PhabricatorOAuthClientEditController.php',
'PhabricatorOAuthClientListController' => 'applications/oauthserver/controller/client/PhabricatorOAuthClientListController.php',
@@ -4644,11 +4644,11 @@
'PhabricatorPolicyInterface',
),
'PhabricatorOAuthClientAuthorizationQuery' => 'PhabricatorCursorPagedPolicyAwareQuery',
- 'PhabricatorOAuthClientBaseController' => 'PhabricatorOAuthServerController',
- 'PhabricatorOAuthClientDeleteController' => 'PhabricatorOAuthClientBaseController',
- 'PhabricatorOAuthClientEditController' => 'PhabricatorOAuthClientBaseController',
- 'PhabricatorOAuthClientListController' => 'PhabricatorOAuthClientBaseController',
- 'PhabricatorOAuthClientViewController' => 'PhabricatorOAuthClientBaseController',
+ 'PhabricatorOAuthClientController' => 'PhabricatorOAuthServerController',
+ 'PhabricatorOAuthClientDeleteController' => 'PhabricatorOAuthClientController',
+ 'PhabricatorOAuthClientEditController' => 'PhabricatorOAuthClientController',
+ 'PhabricatorOAuthClientListController' => 'PhabricatorOAuthClientController',
+ 'PhabricatorOAuthClientViewController' => 'PhabricatorOAuthClientController',
'PhabricatorOAuthResponse' => 'AphrontResponse',
'PhabricatorOAuthServerAccessToken' => 'PhabricatorOAuthServerDAO',
'PhabricatorOAuthServerAuthController' => 'PhabricatorAuthController',
diff --git a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientBaseController.php b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientController.php
rename from src/applications/oauthserver/controller/client/PhabricatorOAuthClientBaseController.php
rename to src/applications/oauthserver/controller/client/PhabricatorOAuthClientController.php
--- a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientBaseController.php
+++ b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientController.php
@@ -1,6 +1,6 @@
<?php
-abstract class PhabricatorOAuthClientBaseController
+abstract class PhabricatorOAuthClientController
extends PhabricatorOAuthServerController {
private $clientPHID;
diff --git a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientDeleteController.php b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientDeleteController.php
--- a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientDeleteController.php
+++ b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientDeleteController.php
@@ -1,7 +1,7 @@
<?php
final class PhabricatorOAuthClientDeleteController
- extends PhabricatorOAuthClientBaseController {
+ extends PhabricatorOAuthClientController {
public function processRequest() {
$request = $this->getRequest();
diff --git a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientEditController.php b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientEditController.php
--- a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientEditController.php
+++ b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientEditController.php
@@ -1,7 +1,7 @@
<?php
final class PhabricatorOAuthClientEditController
- extends PhabricatorOAuthClientBaseController {
+ extends PhabricatorOAuthClientController {
public function processRequest() {
$request = $this->getRequest();
diff --git a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientListController.php b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientListController.php
--- a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientListController.php
+++ b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientListController.php
@@ -1,7 +1,7 @@
<?php
final class PhabricatorOAuthClientListController
- extends PhabricatorOAuthClientBaseController {
+ extends PhabricatorOAuthClientController {
private $queryKey;
diff --git a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientViewController.php b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientViewController.php
--- a/src/applications/oauthserver/controller/client/PhabricatorOAuthClientViewController.php
+++ b/src/applications/oauthserver/controller/client/PhabricatorOAuthClientViewController.php
@@ -1,7 +1,7 @@
<?php
final class PhabricatorOAuthClientViewController
- extends PhabricatorOAuthClientBaseController {
+ extends PhabricatorOAuthClientController {
public function processRequest() {
$request = $this->getRequest();

File Metadata

Mime Type
text/plain
Expires
Wed, Mar 26, 9:59 AM (3 d, 4 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7683277
Default Alt Text
D9989.diff (5 KB)

Event Timeline