From 50070990012aadbcc1167a4d0d07400ce141dfd6 Mon Sep 17 00:00:00 2001 From: Jasper Zonneveld Date: Wed, 15 May 2024 09:10:19 +0200 Subject: [PATCH] style: fix array indentation --- tests/UtilTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/UtilTest.php b/tests/UtilTest.php index bc4875a..566787f 100644 --- a/tests/UtilTest.php +++ b/tests/UtilTest.php @@ -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']));