Files
Global-Jain/app/Events/Report.php

38 lines
723 B
PHP
Raw Normal View History

2025-11-05 10:37:10 +05:30
<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
class Report
{
use SerializesModels;
/**
* @var
*/
public $user;
public $type;
public $reportedFor;
public $reportSubject;
public $description;
/**
* Report constructor.
* @param $user
* @param $type
* @param $reportedFor
* @param $reportSubject
* @param $description
*
*/
public function __construct($user, $type, $reportedFor, $reportSubject, $description)
{
$this->user = $user;
$this->type = $type;
$this->reportedFor = $reportedFor;
$this->reportSubject = $reportSubject;
$this->description = $description;
}
}