Skip to content

Commit

Permalink
feat: Add DispatchMatchkitsJob for handling matchk
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 12, 2024
1 parent 5ccb05b commit fac5d94
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions app/Jobs/DispatchMatchkitsJob.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

namespace App\Jobs;

use Illuminate\Foundation\Bus\Dispatchable;
use LiburuGenealogy\PhpDna\Matchkits;

class DispatchMatchkitsJob
{
use Dispatchable;

public function handle()
{
try {
$matchkits = new Matchkits();
// Assuming the matchkits class has a method named 'process' for demonstration purposes
$matchkits->process();
} catch (\Exception $e) {
// Handle the exception appropriately
// This could involve logging the error or dispatching a job to handle the failure scenario
report($e);
}
}
}

0 comments on commit fac5d94

Please sign in to comment.