Storm\Core\Relational\Database::GetTable PHP Method

GetTable() final public method

Gets a table by name.
final public GetTable ( string $Name ) : Storm\Core\Relational\ITable | null
$Name string The name of the table
return 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;
    }