Doctrine\DBAL\Platforms\SQLServerPlatform::quoteSingleIdentifier PHP Method

quoteSingleIdentifier() public method

{@inheritDoc}
public quoteSingleIdentifier ( $str )
    public function quoteSingleIdentifier($str)
    {
        return "[" . str_replace("]", "][", $str) . "]";
    }
SQLServerPlatform