コード例 #1
0
ファイル: SupportArrTest.php プロジェクト: stillat/collection
 public function testAdd()
 {
     $array = Arr::add(['name' => 'Desk'], 'price', 100);
     $this->assertEquals(['name' => 'Desk', 'price' => 100], $array);
 }