Skip to content

Commit

Permalink
style: fix array indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed May 15, 2024
1 parent 5d20c38 commit 5007099
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/UtilTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ public function testStudly()
public function testArrayExcept()
{
$testArray = [
'first' => 'First',
'second' => 'second',
'third' => 'third',
'fourth' => 'fourth',
];
'first' => 'First',
'second' => 'second',
'third' => 'third',
'fourth' => 'fourth',
];
$this->assertArrayHasKey('first', $testArray);
$this->assertArrayNotHasKey('first', Util::arrayExcept($testArray, ['first']));
$this->assertArrayNotHasKey('third', Util::arrayExcept($testArray, ['third']));
Expand Down

0 comments on commit 5007099

Please sign in to comment.