1 | <?php |
||
9 | class UserSubscribed implements ShouldQueue |
||
10 | { |
||
11 | use SerializesModels; |
||
12 | |||
13 | /** |
||
14 | * The name of the queue the job should be sent to. |
||
15 | * |
||
16 | * @var string|null |
||
17 | */ |
||
18 | public $queue = 'early-access'; |
||
19 | |||
20 | /** |
||
21 | * Subscriber instance. |
||
22 | * |
||
23 | * @var \Neo\EarlyAccess\Subscriber |
||
24 | */ |
||
25 | public $subscriber; |
||
26 | |||
27 | /** |
||
28 | * Create a new event instance. |
||
29 | * |
||
30 | * @param \Neo\EarlyAccess\Subscriber $subscriber |
||
31 | */ |
||
32 | public function __construct(Subscriber $subscriber) |
||
36 | } |
||
37 |