23 lines
485 B
PHP
23 lines
485 B
PHP
<?php
|
|
|
|
namespace App\Events\Ecommerce\Channel;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ChannelActiveStateChanged implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(
|
|
public $channel
|
|
) {
|
|
//
|
|
}
|
|
}
|