Storm\Core\Relational\Database::GetTable PHP Метод

GetTable() закрытый публичный Метод

Gets a table by name.
final public GetTable ( string $Name ) : Storm\Core\Relational\ITable | null
$Name string The name of the table
Результат Storm\Core\Relational\ITable | null The matching table or null if it has not been registered
    public final function GetTable($Name)
    {
        return $this->HasTable($Name) ? $this->Tables[$Name] : null;
    }