Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| EvaluationRuleModel | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Models; |
| 4 | |
| 5 | class EvaluationRuleModel extends AppModel |
| 6 | { |
| 7 | protected $table = 'evaluation_rules'; |
| 8 | protected $primaryKey = 'id'; |
| 9 | protected $useTimestamps = true; |
| 10 | protected $allowedFields = ['name', 'scope_type', 'scope_id', 'almost_ready_threshold', 'ready_threshold', 'minimum_critical_threshold', 'is_active', 'notes', 'created_at', 'updated_at']; |
| 11 | } |