getLeft() public method

Get the value of the model's "left" field.
public getLeft ( ) : integer
return integer
Esempio n. 1
0
File: Move.php Progetto: 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());
 }