Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| NotificationModel | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Models; |
| 4 | |
| 5 | class NotificationModel extends AppModel |
| 6 | { |
| 7 | protected $table = 'notifications'; |
| 8 | protected $primaryKey = 'id'; |
| 9 | protected $useTimestamps = false; |
| 10 | protected $allowedFields = ['user_id', 'child_id', 'type', 'title', 'message', 'status', 'action_url', 'created_at', 'read_at']; |
| 11 | } |