You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
596 B
27 lines
596 B
<?php
|
|
|
|
namespace Appvise\AppStoreNotifications\Tests;
|
|
|
|
use Appvise\AppStoreNotifications\Model\NotificationPayload;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
class DummyJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public $payload;
|
|
|
|
public function __construct(NotificationPayload $payload)
|
|
{
|
|
$this->payload = $payload;
|
|
}
|
|
|
|
function handle()
|
|
{
|
|
}
|
|
}
|
|
|