diff --git a/tests/unit/Foundation/ConfigTest.php b/tests/unit/Foundation/ConfigTest.php index 1f825b4f341..a80acf2b7ab 100644 --- a/tests/unit/Foundation/ConfigTest.php +++ b/tests/unit/Foundation/ConfigTest.php @@ -129,7 +129,8 @@ public function it_does_not_allow_mutation_via_array_access() try { $config['custom_a'] = 'c'; - } catch (RuntimeException $_) { } + } catch (RuntimeException $_) { + } // Ensure the value was not changed $this->assertEquals('b', $config['custom_a']); @@ -145,7 +146,8 @@ public function it_does_not_allow_removal_via_array_access() try { unset($config['custom_a']); - } catch (RuntimeException $_) { } + } catch (RuntimeException $_) { + } // Ensure the value was not changed $this->assertEquals('b', $config['custom_a']);