UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_593f61bc9434
/
app
/
Events
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
TicketNotification.php
<?php namespace EstudioLMS\Events; use Illuminate\Queue\SerializesModels; /** * Class TicketNotification * @package EstudioLMS\Events */ class TicketNotification extends Event { use SerializesModels; /** * @var */ private $data; /** * @var */ private $notificationType; /** * @var bool */ private $new; /** * @var */ private $userType; /** * Create a new event instance. * * @param mixed $data * @param int $notificationType * @param Boolean $new * @param string $userType */ public function __construct( $data, $notificationType, $new, $userType ) { $this->data = $data; $this->notificationType = $notificationType; $this->new = $new; $this->userType = $userType; } /** * @return mixed */ public function grabData() { return $this->data; } /** * @return int */ public function notificationType() { return $this->notificationType; } /** * @return bool */ public function notificationNew() { return $this->new; } /** * @return string */ public function notificationUserType() { return $this->userType; } }
Copyright © 2026 - UnknownSec