phpmyadmin/libraries/classes/Controllers/Table/AbstractController.php
Maurício Meneghini Fauth 9adaa912e1
Rename Response class to ResponseRenderer
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-06-30 12:35:22 -03:00

31 lines
699 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Controllers\Table;
use PhpMyAdmin\Controllers\AbstractController as Controller;
use PhpMyAdmin\ResponseRenderer;
use PhpMyAdmin\Template;
abstract class AbstractController extends Controller
{
/** @var string */
protected $db;
/** @var string */
protected $table;
/**
* @param ResponseRenderer $response
* @param string $db Database name
* @param string $table Table name
*/
public function __construct($response, Template $template, $db, $table)
{
parent::__construct($response, $template);
$this->db = $db;
$this->table = $table;
}
}