Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class MultiTokensJob implements ShouldQueue |
||
13 | { |
||
14 | use Dispatchable; |
||
15 | use InteractsWithQueue; |
||
16 | use Queueable; |
||
17 | use SerializesModels; |
||
|
|||
18 | use Notification; |
||
19 | |||
20 | protected $tokens; |
||
21 | protected $message; |
||
22 | protected $url; |
||
23 | protected $headers; |
||
24 | |||
25 | public function __construct($tokens, $message, $url, $headers) |
||
31 | } |
||
32 | |||
33 | public function handle() |
||
43 |