| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class EmailSettingsUpdatedEvent |
||
| 15 | { |
||
| 16 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
| 17 | |||
| 18 | public $settings; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Create a new event instance. |
||
| 22 | * |
||
| 23 | * @return void |
||
| 24 | */ |
||
| 25 | public function __construct(EmailSettingsRequest $settings) |
||
| 26 | { |
||
| 27 | $this->settings = $settings; |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Get the channels the event should broadcast on. |
||
| 32 | * |
||
| 33 | * @return \Illuminate\Broadcasting\Channel|array |
||
| 34 | */ |
||
| 35 | public function broadcastOn() |
||
| 38 | } |
||
| 39 | } |
||
| 40 |