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:
Joshua Spence
2014-07-22 00:05:17 +10:00
parent 76ed7d1a02
commit 37106c1b31
6 changed files with 11 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
<?php
abstract class PhabricatorOAuthClientBaseController
abstract class PhabricatorOAuthClientController
extends PhabricatorOAuthServerController {
private $clientPHID;

View File

@@ -1,7 +1,7 @@
<?php
final class PhabricatorOAuthClientDeleteController
extends PhabricatorOAuthClientBaseController {
extends PhabricatorOAuthClientController {
public function processRequest() {
$request = $this->getRequest();

View File

@@ -1,7 +1,7 @@
<?php
final class PhabricatorOAuthClientEditController
extends PhabricatorOAuthClientBaseController {
extends PhabricatorOAuthClientController {
public function processRequest() {
$request = $this->getRequest();

View File

@@ -1,7 +1,7 @@
<?php
final class PhabricatorOAuthClientListController
extends PhabricatorOAuthClientBaseController {
extends PhabricatorOAuthClientController {
private $queryKey;

View File

@@ -1,7 +1,7 @@
<?php
final class PhabricatorOAuthClientViewController
extends PhabricatorOAuthClientBaseController {
extends PhabricatorOAuthClientController {
public function processRequest() {
$request = $this->getRequest();