merge() 공개 메소드

public merge ( $items )
예제 #1
0
 public function test_non_array_or_col_throws_ex()
 {
     $this->expectException(InvalidArgumentException::class);
     $col = new Collection('TestClassA');
     $col->merge(new TestClassA(1));
 }