Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class StatementSummary extends Model |
||
21 | { |
||
22 | protected $connection = 'sense'; |
||
23 | |||
24 | protected $table = 'sense_statement_summaries'; |
||
25 | |||
26 | protected $fillable = [ |
||
27 | 'request_id', |
||
28 | 'connection', |
||
29 | 'time_min', |
||
30 | 'time_max', |
||
31 | 'time_total', |
||
32 | ]; |
||
33 | |||
34 | protected $casts = [ |
||
35 | 'queries_count' => 'int', |
||
36 | 'time_total' => 'float', |
||
37 | 'time_min' => 'float', |
||
38 | 'time_max' => 'float', |
||
39 | ]; |
||
40 | |||
41 | public function statement(): BelongsTo |
||
46 |