コード例 #1
0
ファイル: OClass.php プロジェクト: Edencia/orientdb-php-odm
 /**
  * @param bool $includeParent
  *
  * @return OIndex[]
  */
 public function getIndexes($includeParent = true)
 {
     return isset($this->_superClass) && $includeParent ? array_merge($this->_superClass->getIndexes(), $this->_indexes) : $this->_indexes;
 }