1 | <?php |
||
11 | class UnFavAUser extends Job implements ShouldQueue |
||
12 | { |
||
13 | |||
14 | use InteractsWithQueue, SerializesModels; |
||
15 | |||
16 | |||
17 | |||
18 | public $userID; |
||
19 | |||
20 | public $userIDToUnFav; |
||
21 | |||
22 | |||
23 | /** |
||
24 | * Create a new command instance. |
||
25 | * |
||
26 | */ |
||
27 | 3 | public function __construct($userID, $userIDToUnFav) |
|
32 | |||
33 | /** |
||
34 | * Execute the command. |
||
35 | * |
||
36 | */ |
||
37 | public function handle(UsersOrigin $UsersOrigin) |
||
42 | } |
||
43 |