Esempio n. 1
0
 /**
  * Type of index.
  * E.g.: INDEX, UNIQUE, PRIMARY, ...
  *
  * @return Type
  */
 public function getType()
 {
     $rawType = $this->data[192];
     $type = ord($rawType);
     return Type::getByValue($type);
 }