Skip to content

Commit

Permalink
Fix php cron setup documentation
Browse files Browse the repository at this point in the history
Add a missing ,
  • Loading branch information
fsalmen-nx committed Jul 25, 2024
1 parent c200357 commit 78adf03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform-includes/crons/setup/php.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If your job execution fails, you can notify Sentry about the failure:
// 🔴 Notify Sentry your job has failed:
\Sentry\captureCheckIn(
slug: '<monitor-slug>',
status: CheckInStatus::error()
status: CheckInStatus::error(),
checkInId: $checkInId,
);
```
Expand Down

0 comments on commit 78adf03

Please sign in to comment.