Skip to content

Commit 5007099

Browse files
committed
style: fix array indentation
1 parent 5d20c38 commit 5007099

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/UtilTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ public function testStudly()
4949
public function testArrayExcept()
5050
{
5151
$testArray = [
52-
'first' => 'First',
53-
'second' => 'second',
54-
'third' => 'third',
55-
'fourth' => 'fourth',
56-
];
52+
'first' => 'First',
53+
'second' => 'second',
54+
'third' => 'third',
55+
'fourth' => 'fourth',
56+
];
5757
$this->assertArrayHasKey('first', $testArray);
5858
$this->assertArrayNotHasKey('first', Util::arrayExcept($testArray, ['first']));
5959
$this->assertArrayNotHasKey('third', Util::arrayExcept($testArray, ['third']));

0 commit comments

Comments
 (0)