wip
This commit is contained in:
22
app/Events/Ecommerce/Channel/ChannelActiveStateChanged.php
Normal file
22
app/Events/Ecommerce/Channel/ChannelActiveStateChanged.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?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
|
||||
) {
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user