Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace BO\Zmsdb\Query\Builder;
4
5interface DialectInterface
6{
7    /**
8     * Quotes a table name correctly as per this engines dialect.
9     *
10     * @param   string  $table
11     * @return  string
12     */
13    public function quoteTable($table);
14
15    /**
16     * Correctly quotes a field name, either in "name" or "table.name" format.
17     *
18     * @param   string  $field
19     * @return  string
20     */
21    public function quoteField($field);
22}