Skip to content

Commit

Permalink
add Fixtures/UniqueJob
Browse files Browse the repository at this point in the history
  • Loading branch information
tiramisuliu committed Aug 12, 2024
1 parent 101844e commit be6bea4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/Integration/Queue/Fixtures/UniqueJob.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

namespace Illuminate\Tests\Integration\Queue\Fixtures;

use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;

class UniqueJob implements ShouldQueue, ShouldBeUnique
{
use Queueable;
}

0 comments on commit be6bea4

Please sign in to comment.