コード例 #1
0
 private function getTablesCommand()
 {
     $getTablesCommand = new GetTablesCommand();
     $getTablesCommand->setConnection($this->connection);
     return $getTablesCommand->execute();
 }
コード例 #2
0
ファイル: TestCase.php プロジェクト: czogori/rentgen
 protected function getTables($schemaName)
 {
     $getTablesCommand = new GetTablesCommand();
     $getTablesCommand->setConnection($this->connection)->setSchemaName($schemaName);
     return $getTablesCommand->execute();
 }