コード例 #1
0
ファイル: ArrTest.php プロジェクト: caffeinated/beverage
 public function testCanDoSomethingAtEachValue()
 {
     $closure = function ($value, $key) {
         echo $key . ':' . $value . ':';
     };
     Arr::at($this->array, $closure);
     $result = 'foo:bar:bis:ter:';
     $this->expectOutputString($result);
 }