Pop\Data\Data::getPma PHP Méthode

getPma() public méthode

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

Usage Example

Exemple #1
0
 public function testSetAndGetPma()
 {
     $d = new Data(__DIR__ . '/../tmp/test.sql');
     $d->setPma(true);
     $this->assertTrue($d->getPma());
 }