eZ\Publish\Core\Persistence\Doctrine\ConnectionHandler::quoteIdentifier PHP Метод

quoteIdentifier() публичный Метод

Ignores some properties of identifier quoting, but since we use somehow sane table and column names, ourselves, this is fine. This is an optimization and works around the ezcDB implementation.
public quoteIdentifier ( string $identifier ) : string
$identifier string
Результат string
    public function quoteIdentifier($identifier)
    {
        return '`' . $identifier . '`';
    }