You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to find a way of "reversing" a RID to its Vertex class name.
Please, could you add this method into PhpOrient\Protocols\Common\ClustersMap.php ?
/**
* Give the name of the cluster $ID
*
* @param int $ID
* @return string|null
*/
public function getClusterName( $ID ){
return isset($this->reverseIDMap[ $ID ]) ? $this->reverseIDMap[ $ID ][1] : null;
}
The text was updated successfully, but these errors were encountered:
I'm trying to find a way of "reversing" a RID to its Vertex class name.
Please, could you add this method into PhpOrient\Protocols\Common\ClustersMap.php ?
The text was updated successfully, but these errors were encountered: