コード例 #1
0
ファイル: NotCondition.php プロジェクト: bit3/php-flexi-tree
 /**
  * {@inheritdoc}
  */
 public function describe()
 {
     return sprintf('not %s', $this->condition->describe());
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 public function describe()
 {
     return $this->condition ? 'item.parent(' . $this->condition->describe() . ')' : 'item.parent != null';
 }