%PDF- %PDF-
| Direktori : /proc/self/root/home/infra/phpmyadmin/libraries/classes/Controllers/ |
| Current File : //proc/self/root/home/infra/phpmyadmin/libraries/classes/Controllers/DatabaseController.php |
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Controllers;
final class DatabaseController extends AbstractController
{
public function __invoke(): void
{
global $dblist;
$this->response->addJSON(['databases' => $dblist->databases]);
}
}