File "ModuleDisabledEvent.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/app/ModuleDisabledEvent.php
File size: 462 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Events;

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

class ModuleDisabledEvent
{
    use Dispatchable;
    use InteractsWithSockets;
    use SerializesModels;

    public $module;

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