Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
bastien-phi committed Dec 15, 2023
1 parent 66aa5fa commit 62fb709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Support/SupportArrTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ public function testDot()
'user.name' => 'Taylor',
'user.age' => 25,
'user.languages.0' =>'PHP',
'user.languages.1' => 'C#'
'user.languages.1' => 'C#',
], $array);

$array = Arr::dot(['foo', 'foo' => ['bar' => 'baz', 'baz' => ['a' => 'b']]]);
$this->assertEquals([
'foo',
'foo.bar' => 'baz',
'foo.baz.a' => 'b'
'foo.baz.a' => 'b',
], $array);
}

Expand Down

0 comments on commit 62fb709

Please sign in to comment.