コード例 #1
0
ファイル: Rule.php プロジェクト: zientalak/devicedetector
 /**
  * {@inheritdoc}
  */
 public function addCondition(ConditionInterface $condition)
 {
     if (!$this->hasCondition($condition)) {
         $this->conditions->attach($condition);
         return true;
     }
     return false;
 }