addIdentifierQuotes() public method

public addIdentifierQuotes ( $s )
Example #1
0
 private function quoteTable(Database $db, $table)
 {
     if ($db->getType() === 'sqlite') {
         return $table;
     } else {
         return $db->addIdentifierQuotes($table);
     }
 }