getIdQuote() public method

Get the ID quote
public getIdQuote ( ) : string
return string
Exemplo n.º 1
0
 public function testSetAndGetIdQuote()
 {
     $d = new Data(__DIR__ . '/../tmp/test.sql');
     $d->setIdQuote('`');
     $this->assertEquals('`', $d->getIdQuote());
 }