getTable() public method

Get the table name
public getTable ( ) : string
return string
コード例 #1
0
ファイル: DataTest.php プロジェクト: nicksagona/PopPHP
 public function testSetAndGetTable()
 {
     $d = new Data(__DIR__ . '/../tmp/test.sql');
     $d->setTable('users');
     $this->assertEquals('users', $d->getTable());
 }