コード例 #1
0
ファイル: NodelistTest.php プロジェクト: jtclark/phly
 public function testCallingEachShouldReturnNodelist()
 {
     $nl = new NodeList(array());
     $return = $nl->each(function ($v) {
     });
     $this->assertSame($nl, $return);
 }