Pop\Db\Sql::getQuoteId PHP Method

getQuoteId() public method

Get the quote ID type
public getQuoteId ( ) : integer
return integer
    public function getQuoteId()
    {
        return $this->quoteIdType;
    }

Usage Example

Exemplo n.º 1
0
 public function testSetAndGetQuoteId()
 {
     $s = new Sql(Db::factory('Sqlite', array('database' => __DIR__ . '/../tmp/test.sqlite')), 'users');
     $s->setQuoteId(Sql::NO_QUOTE);
     $this->assertEquals(0, $s->getQuoteId());
 }