0 follower

Final Class Yiisoft\Db\Oracle\ServerInfo

InheritanceYiisoft\Db\Oracle\ServerInfo » Yiisoft\Db\Driver\Pdo\PdoServerInfo

Public Methods

Hide inherited methods

Method Description Defined By
getTimezone() Yiisoft\Db\Oracle\ServerInfo

Method Details

Hide inherited methods

getTimezone() public method

public string getTimezone ( boolean $refresh false )
$refresh boolean

                public function getTimezone(bool $refresh = false): string
{
    /** @psalm-suppress TypeDoesNotContainType */
    if (!isset($this->timezone) || $refresh) {
        /** @var string */
        $this->timezone = $this->db->createCommand('SELECT SESSIONTIMEZONE FROM DUAL')->queryScalar();
    }
    return $this->timezone;
}