DIR: /proc/self/root/var/www/html/phpmyadmin/libraries/classes/Controllers/ |
Current File : //proc/self/root/var/www/html/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]); } } |