Skip to content

Commit

Permalink
first commit 🔥
Browse files Browse the repository at this point in the history
  • Loading branch information
3x1io committed Jan 8, 2025
1 parent be0be95 commit f6beed9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Jobs/NotifyLogstash.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@

namespace TomatoPHP\LaravelLogstash\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Monolog\LogRecord;
use TomatoPHP\LaravelLogstash\Client\Logstash;

class NotifyLogstash implements ShouldQueue
{
use Dispatchable;
use InteractsWithQueue;
use Queueable;
use SerializesModels;

/**
* Create a new job instance.
Expand Down

0 comments on commit f6beed9

Please sign in to comment.