Skip to content

Commit

Permalink
feat: Add DnaServiceProvider for php-dna integrati
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Mar 12, 2024
1 parent fac5d94 commit fa5442f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions app/Providers/DnaServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use App\Jobs\DispatchMatchkitsJob;

class DnaServiceProvider extends ServiceProvider
{
public function register()
{
$this->app->bind('dispatchMatchkits', function($app) {
return new DispatchMatchkitsJob();
});
}

public function boot()
{
// Optional: Add event listeners or other bootstrapping code necessary for the php-dna library integration
}
}

0 comments on commit fa5442f

Please sign in to comment.