コード例 #1
0
ファイル: OrSpec.php プロジェクト: robtuley/knotwerk
 /**
  * Whether specification is satisfied.
  *
  * @param T_Auth $auth
  * @return bool
  */
 function isSatisfiedBy($auth)
 {
     return $this->spec->isSatisfiedBy($auth) || $this->or_spec->isSatisfiedBy($auth);
 }
コード例 #2
0
ファイル: AndSpec.php プロジェクト: robtuley/knotwerk
 /**
  * Whether specification is satisfied.
  *
  * @param T_Auth $auth
  * @return bool
  */
 function isSatisfiedBy($auth)
 {
     return $this->spec->isSatisfiedBy($auth) && $this->and_spec->isSatisfiedBy($auth);
 }