Skip to content

Commit

Permalink
feat: Updated src/Jobs/DispatchMatchkitsJob.php
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 24, 2024
1 parent a6ae68e commit 0c152bd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Jobs/DispatchMatchkitsJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ public function __construct(Matchkits $matchkits)

public function handle()
{
// Logic to process matchkits
$this->matchkits->process();
try {
// Assuming the matchkits class has a method named 'process' for demonstration purposes
$this->matchkits->process();
} catch (\Exception $e) {
// Handle the exception appropriately
}
}
}

0 comments on commit 0c152bd

Please sign in to comment.