Storm\Drivers\Platforms\Base\Queries\ExpressionCompiler::GetCastTypeString PHP Метод

GetCastTypeString() защищенный Метод

protected GetCastTypeString ( $Operator )
    protected function GetCastTypeString($Operator)
    {
        if (isset($this->CastTypes[$Operator])) {
            return $this->CastTypes[$Operator];
        } else {
            throw new \Storm\Drivers\Base\Relational\PlatformException('%s does not support the supplied cast type: %s', get_class($this), $Operator);
        }
    }