Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
43 | 26 | public function handle() |
|
44 | { |
||
45 | 26 | if (!config('ibrand.sms.dblog')) { |
|
46 | 22 | return; |
|
47 | } |
||
48 | 4 | DB::table('laravel_sms_log')->insert([ |
|
49 | 4 | 'mobile' => $this->code->to, |
|
50 | 4 | 'data' => json_encode($this->code), |
|
51 | 4 | 'is_sent' => $this->flag, |
|
52 | 4 | 'result' => $this->result, |
|
53 | 4 | 'created_at' => Carbon::now(), |
|
54 | 4 | 'updated_at' => Carbon::now(), |
|
55 | ]); |
||
56 | 4 | } |
|
57 | } |
||
58 |