예제 #1
0
파일: ObjectTest.php 프로젝트: jgswift/qinq
 function testIntegratedQueryAny()
 {
     $strings = new qinq\Collection(['foo', 'bar', 'bink', 'bean', 'jacob', 'johnson']);
     $this->assertEquals(true, $strings->any('jacob'));
     $this->assertEquals(false, $strings->any('donald'));
 }