Handle Appstore server-to-server notifications in Laravel or Lumen projects for auto-renewable subscriptions
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
602 B

5 years ago
<?php
namespace Appvise\AppStoreNotifications\Tests;
use Illuminate\Bus\Queueable;
5 years ago
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
5 years ago
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
5 years ago
use Appvise\AppStoreNotifications\Model\NotificationPayload;
5 years ago
class DummyJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $payload;
public function __construct(NotificationPayload $payload)
{
$this->payload = $payload;
}
5 years ago
public function handle()
5 years ago
{
}
}