예제 #1
0
파일: CollectionTest.php 프로젝트: chh/funk
 function testOperatorShortcut()
 {
     $a = new Collection(range(0, 10));
     $this->assertEquals(range(0, 7), $a->remove(Operator::gt(7))->asArray());
 }