示例#1
0
 /**
  * Get base tables and views
  *
  * @param string $schema
  * @return Object\TableObject[]
  */
 public function getTables($schema = null, $includeViews = false)
 {
     return $this->source->getTables($schema, $includeViews);
 }
示例#2
0
文件: Metadata.php 项目: rikaix/zf2
 /**
  * @param null $schema
  * @param null $database
  * @return Object\TableObject[]
  */
 public function getTables($schema = null, $database = null)
 {
     return $this->source->getTables();
 }