setPma() 공개 메소드

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