MetaModels\Factory::getAllTables PHP 메소드

getAllTables() 공개 정적인 메소드

Query for all known MetaModel database tables.
사용 중단: To retrieve all names use method collectNames().
public static getAllTables ( ) : string[]
리턴 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();
    }