getRight() public method

Get the value of the model's "right" field.
public getRight ( ) : integer
return integer
示例#1
0
文件: Move.php 项目: yajra/baum
 /**
  * Check wether there should be changes in the downward tree structure.
  *
  * @return boolean
  */
 protected function hasChange()
 {
     return !($this->bound1() == $this->node->getRight() || $this->bound1() == $this->node->getLeft());
 }