Files
ticketbeast/app/Jobs/ProcessPosterImage.php
2017-11-15 08:08:13 -05:00

27 lines
515 B
PHP

<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
class ProcessPosterImage implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $concert;
public function __construct($concert)
{
$this->concert = $concert;
}
public function handle()
{
//
}
}