Pop\Data\Data::getPma PHP Method

getPma() public method

Get the PMA flag
public getPma ( ) : boolean
return boolean
    public function getPma()
    {
        return $this->pma;
    }

Usage Example

コード例 #1
0
ファイル: DataTest.php プロジェクト: nicksagona/PopPHP
 public function testSetAndGetPma()
 {
     $d = new Data(__DIR__ . '/../tmp/test.sql');
     $d->setPma(true);
     $this->assertTrue($d->getPma());
 }