Merge pull request #14857 from Tithugues/feature/remove-useless-proxies

Remove useless proxies
This commit is contained in:
Maurício Meneghini Fauth 2019-01-16 02:20:08 -03:00 committed by GitHub
commit d4909c5198
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 43 deletions

View File

@ -28,17 +28,6 @@ use Williamdes\MariaDBMySQLKBS\KBException;
class ServerVariablesController extends Controller
{
/**
* Constructs ServerVariablesController
*
* @param \PhpMyAdmin\Response $response Response object
* @param \PhpMyAdmin\DatabaseInterface $dbi DatabaseInterface object
*/
public function __construct($response, $dbi)
{
parent::__construct($response, $dbi);
}
/**
* Index action
*

View File

@ -23,14 +23,6 @@ use PhpMyAdmin\Util;
*/
class AuthenticationConfig extends AuthenticationPlugin
{
/**
* AuthenticationConfig constructor.
*/
public function __construct()
{
parent::__construct();
}
/**
* Displays authentication form
*

View File

@ -24,14 +24,6 @@ use PhpMyAdmin\Core;
*/
class AuthenticationHttp extends AuthenticationPlugin
{
/**
* AuthenticationHttp constructor.
*/
public function __construct()
{
parent::__construct();
}
/**
* Displays authentication form and redirect as necessary
*

View File

@ -21,14 +21,6 @@ use PhpMyAdmin\Util;
*/
class AuthenticationSignon extends AuthenticationPlugin
{
/**
* AuthenticationSignon constructor.
*/
public function __construct()
{
parent::__construct();
}
/**
* Displays authentication form
*

View File

@ -25,14 +25,6 @@ use PhpMyAdmin\Properties\Options\Items\TextPropertyItem;
*/
abstract class AbstractImportCsv extends ImportPlugin
{
/**
* AbstractImportCsv constructor.
*/
public function __construct()
{
parent::__construct();
}
/**
* Sets the import plugin properties.
* Called in the constructor.