Baum\Node::getRight PHP Метод

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

Get the value of the model's "right" field.
public getRight ( ) : integer
Результат integer
    public function getRight()
    {
        return $this->getAttribute($this->getRightColumnName());
    }

Usage Example

Пример #1
0
 /**
  * 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());
 }