MetaModels\Factory::getAllTables PHP Method

getAllTables() public static method

Query for all known MetaModel database tables.
Deprecation: To retrieve all names use method collectNames().
public static getAllTables ( ) : string[]
return string[] all MetaModel table names as string array.
    public static function getAllTables()
    {
        trigger_error('MetaModels\\Factory::getAllTables is deprecated and will get removed. ' . 'Use method MetaModels\\Factory::collectNames() instead.', E_USER_DEPRECATED);
        $factory = static::getDefaultFactory();
        return $factory->collectNames();
    }