コード例 #1
0
 /**
  * Checks if the value meets the specification
  *
  * @param mixed[] $value
  * @return bool
  */
 public function isSatisfiedBy(array $value)
 {
     return !$this->wrapped->isSatisfiedBy($value);
 }
コード例 #2
0
 function __construct($condition1, $condition2)
 {
     parent::__construct($condition1, $condition2);
 }
コード例 #3
0
 /**
  * Checks if the value meets the specification
  *
  * @param mixed[] $value
  * @return bool
  */
 public function isSatisfiedBy(array $value)
 {
     return $this->one->isSatisfiedBy($value) && $this->other->isSatisfiedBy($value);
 }