andFalse() 공개 메소드

public andFalse ( )
예제 #1
0
 public function testAndFalseReturnsFalse()
 {
     $conjunction1 = new AndX(array($notNull = new Same('10')));
     $conjunction2 = $conjunction1->andFalse();
     $this->assertInstanceOf('Webmozart\\Expression\\Logic\\AlwaysFalse', $conjunction2);
 }