| 1 | <?php |
||
| 22 | class DbLogger implements ShouldQueue |
||
| 23 | { |
||
| 24 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
| 25 | |||
| 26 | private $code; |
||
| 27 | private $result; |
||
| 28 | private $flag; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Create a new job instance. |
||
| 32 | */ |
||
| 33 | 26 | public function __construct($code, $result, $flag) |
|
| 39 | |||
| 40 | /** |
||
| 41 | * Execute the job. |
||
| 42 | */ |
||
| 43 | 26 | public function handle() |
|
| 57 | } |
||
| 58 |