Skip to content

Commit b397704

Browse files
committed
add foundation queueable trait
1 parent 821346d commit b397704

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace Illuminate\Foundation\Queue;
4+
5+
use Illuminate\Bus\Queueable as QueueableByBus;
6+
use Illuminate\Foundation\Bus\Dispatchable;
7+
use Illuminate\Queue\InteractsWithQueue;
8+
use Illuminate\Queue\SerializesModels;
9+
10+
trait Queueable
11+
{
12+
use Dispatchable, InteractsWithQueue, QueueableByBus, SerializesModels;
13+
}

0 commit comments

Comments
 (0)