mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-11 22:19:47 -06:00
60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\PrivateMessage;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ProcessMassPM implements ShouldQueue
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithQueue;
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var mixed
|
|
*/
|
|
public $sender_id;
|
|
|
|
/**
|
|
* @var mixed
|
|
*/
|
|
public $receiver_id;
|
|
|
|
/**
|
|
* ProcessMassPM Constructor.
|
|
*/
|
|
public function __construct(protected $senderId, protected $receiverId, protected $subject, protected $message)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
$privateMessage = new PrivateMessage();
|
|
$privateMessage->sender_id = $this->senderId;
|
|
$privateMessage->receiver_id = $this->receiverId;
|
|
$privateMessage->subject = $this->subject;
|
|
$privateMessage->message = $this->message;
|
|
$privateMessage->save();
|
|
}
|
|
}
|