PdoDataSource::getTables PHP Méthode

getTables() public méthode

List the tables in a data source alphabetically.
public getTables ( ) : array(string)
Résultat array(string)
    function getTables()
    {
        $cacheKey = $this->cachePrefix . 'Tables';
        $tables = Cache::get($cacheKey);
        if (!$tables) {
            $tables = $this->provider->getTables();
            Cache::set($this->cachePrefix . 'Tables', $tables);
        }
        return $tables;
    }