Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Events/
Upload File :
Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Events/UsersActivityEvent.php

<?php

namespace App\Events;

use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

class UsersActivityEvent
{
    use Dispatchable;
    use InteractsWithSockets;
    use SerializesModels;

    public $email;

    public $type;

    public $ip;

    public $connection;

    /**
     * Create a new event instance.
     *
     * @return void
     */
    public function __construct($email, $type, $ip, $connection)
    {
        $this->email = $email;
        $this->type = $type;
        $this->ip = $ip;
        $this->connection = $connection;
    }
}