45 lines
1.0 KiB
PHP
45 lines
1.0 KiB
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace PhpMyAdmin\Controllers\Table\Structure;
|
||
|
|
||
|
use PhpMyAdmin\Controllers\Sql\SqlController;
|
||
|
use PhpMyAdmin\Controllers\Table\AbstractController;
|
||
|
use PhpMyAdmin\Controllers\Table\StructureController;
|
||
|
use PhpMyAdmin\ResponseRenderer;
|
||
|
use PhpMyAdmin\Template;
|
||
|
|
||
|
final class AddKeyController extends AbstractController
|
||
|
{
|
||
|
/** @var SqlController */
|
||
|
private $sqlController;
|
||
|
|
||
|
/** @var StructureController */
|
||
|
private $structureController;
|
||
|
|
||
|
public function __construct(
|
||
|
ResponseRenderer $response,
|
||
|
Template $template,
|
||
|
string $db,
|
||
|
string $table,
|
||
|
SqlController $sqlController,
|
||
|
StructureController $structureController
|
||
|
) {
|
||
|
parent::__construct($response, $template, $db, $table);
|
||
|
$this->sqlController = $sqlController;
|
||
|
$this->structureController = $structureController;
|
||
|
}
|
||
|
|
||
|
public function __invoke(): void
|
||
|
{
|
||
|
global $reload;
|
||
|
|
||
|
($this->sqlController)();
|
||
|
|
||
|
$reload = true;
|
||
|
|
||
|
($this->structureController)();
|
||
|
}
|
||
|
}
|