Phactory\Sql\DbUtil\AbstractDbUtil::quoteIdentifier PHP Méthode

quoteIdentifier() public méthode

public quoteIdentifier ( string $identifier ) : string
$identifier string name of table, column, etc
Résultat string quoted identifier
    public function quoteIdentifier($identifier)
    {
        $quote = $this->getQuoteChar();
        return $quote . $identifier . $quote;
    }