Pop\Db\Adapter\Mysqli::loadTables PHP Метод

loadTables() защищенный Метод

Get an array of the tables of the database.
protected loadTables ( ) : array
Результат array
    protected function loadTables()
    {
        $tables = array();
        $this->query('SHOW TABLES');
        while (($row = $this->fetch()) != false) {
            foreach ($row as $value) {
                $tables[] = $value;
            }
        }
        return $tables;
    }