Exemplo n.º 1
0
 /**
  * Test collection reduction method
  *
  * @return void
  */
 public function testReduce()
 {
     $result = $this->collection->reduce(function ($carry, $value) {
         return $carry + $value;
     });
     $this->assertEquals(6, $result);
 }