Don't explicitly name abstract base classes
Summary: Ref T5655. It is superfluous to include "base" in the name of an abstract base class. Furthermore, it is not done consistently within the code base. Test Plan: Ran `arc unit`. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Maniphest Tasks: T5655 Differential Revision: https://secure.phabricator.com/D9989
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
abstract class PhabricatorOAuthClientBaseController
|
||||
abstract class PhabricatorOAuthClientController
|
||||
extends PhabricatorOAuthServerController {
|
||||
|
||||
private $clientPHID;
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
final class PhabricatorOAuthClientDeleteController
|
||||
extends PhabricatorOAuthClientBaseController {
|
||||
extends PhabricatorOAuthClientController {
|
||||
|
||||
public function processRequest() {
|
||||
$request = $this->getRequest();
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
final class PhabricatorOAuthClientEditController
|
||||
extends PhabricatorOAuthClientBaseController {
|
||||
extends PhabricatorOAuthClientController {
|
||||
|
||||
public function processRequest() {
|
||||
$request = $this->getRequest();
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
final class PhabricatorOAuthClientListController
|
||||
extends PhabricatorOAuthClientBaseController {
|
||||
extends PhabricatorOAuthClientController {
|
||||
|
||||
private $queryKey;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
final class PhabricatorOAuthClientViewController
|
||||
extends PhabricatorOAuthClientBaseController {
|
||||
extends PhabricatorOAuthClientController {
|
||||
|
||||
public function processRequest() {
|
||||
$request = $this->getRequest();
|
||||
|
||||
Reference in New Issue
Block a user