コード例 #1
0
ファイル: SupportArrTest.php プロジェクト: stillat/collection
 public function testDot()
 {
     $array = Arr::dot(['foo' => ['bar' => 'baz']]);
     $this->assertEquals(['foo.bar' => 'baz'], $array);
 }