Skip to content

Commit f95e516

Browse files
authored
fix: Fix CheckIn constructor argument order (#680)
1 parent 2cce76b commit f95e516

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Sentry/Laravel/Features/ConsoleIntegration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ private function createCheckIn(string $slug, CheckInStatus $status, string $id =
118118
$slug,
119119
$status,
120120
$id,
121-
$options->getEnvironment(),
122-
$options->getRelease()
121+
$options->getRelease(),
122+
$options->getEnvironment()
123123
);
124124
}
125125

0 commit comments

Comments
 (0)