Skip to content

Commit

Permalink
add foundation queueable trait
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jul 2, 2024
1 parent 821346d commit b397704
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Illuminate/Foundation/Queue/Queueable.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace Illuminate\Foundation\Queue;

use Illuminate\Bus\Queueable as QueueableByBus;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;

trait Queueable
{
use Dispatchable, InteractsWithQueue, QueueableByBus, SerializesModels;
}

0 comments on commit b397704

Please sign in to comment.