Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and actions-user committed Dec 9, 2024
1 parent 5bda3be commit 25b874d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/ForkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ function () {
test('events of child processes are isolated from each other', function () {
$value = 2;
Fork::new()
->before(function () use(&$value) {
->before(function () use (&$value) {
$value++;
global $x;
$x=1;
$x = 1;
})
->after(function () use(&$value) {
->after(function () use (&$value) {
$value++;
global $x;
expect($x)->toEqual(2);
Expand Down

0 comments on commit 25b874d

Please sign in to comment.