for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GoCardlessPayment\Jobs\WebhookHandlers;
use GoCardlessPro\Resources\Event;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
abstract class WebhookEventHandlerJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
Illuminate\Queue\SerializesModels
GoCardlessPayment\Jobs\W...\WebhookEventHandlerJob
$collectionClass
$id
$relations
$class
$keyBy
public Event $event;
public function __construct(Event $event)
$this->event = $event;
}