getSchema() публичный Метод

return database table schema
public getSchema ( string $table ) : array
$table string table name
Результат array
Пример #1
0
 /**
  * get table schema
  *
  * @return array
  */
 private function schema()
 {
     return $this->connector->getSchema($this->table);
 }
Пример #2
0
 /**
  * get table schema
  *
  * @return array
  */
 private function schema()
 {
     return $this->connection->getSchema($this->from);
 }