Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
franzliedke authored and StyleCIBot committed Sep 25, 2020
1 parent db05890 commit 30473eb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/unit/Foundation/ConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand All @@ -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']);
Expand Down

0 comments on commit 30473eb

Please sign in to comment.