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