setPma() public method

Set the PMA compatible XML flag
public setPma ( boolean $comp ) : Data
$comp boolean
return Data
Example #1
0
 public function testSetAndGetPma()
 {
     $d = new Data(__DIR__ . '/../tmp/test.sql');
     $d->setPma(true);
     $this->assertTrue($d->getPma());
 }