HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/var/www/html/phpmyadmin/libraries/classes/Controllers/
Upload File :
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]);
    }
}