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

public deflate ( $value, SQLBuilder\ArgumentArray $args = NULL )
$args SQLBuilder\ArgumentArray
Пример #1
0
 public function testAlwaysBindWithParamMarker()
 {
     $args = new ArgumentArray();
     $driver = new MySQLDriver();
     $driver->alwaysBindValues(true);
     $this->assertEquals('?', $driver->deflate(new ParamMarker('hack'), $args));
 }