12345678910111213141516171819 |
- <?php
- namespace app\event;
- class Msg
- {
- public $msg;
- public $employee;
- public $type;
- public $data;
- public function __construct($employee, $msg, $type, $data=[])
- {
- $this->employee = $employee;
- $this->msg = $msg;
- $this->type = $type;
- $this->data = $data;
- }
- }
|