Exemplo n.º 1
0
 /**
  * @param string $connectionName
  * @param string $schemaName
  * @return array
  */
 public function getTableNames($schemaName, $connectionName = "default")
 {
     $this->queryValidator->validateConnection($connectionName);
     $this->dynamicRepo->setUp($connectionName);
     return $this->dynamicRepo->getTableNamesOfSchema($schemaName);
 }