コード例 #1
0
ファイル: intersect.php プロジェクト: wemash/hooray
<?php

Chain::add('intersect', function ($data, $other) {
    return array_intersect($data, Hooray::unwrap([$other]));
});
コード例 #2
0
ファイル: hooray.php プロジェクト: wemash/hooray
function hooray()
{
    return new Hooray(Hooray::unwrap(func_get_args()));
}
コード例 #3
0
ファイル: Hooray.test.php プロジェクト: wemash/hooray
 function testUnwrapsHoorays()
 {
     $this->assertEquals([1], Hooray::unwrap([new Hooray([1])]));
 }