Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| SystemLog | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | declare(strict_types=1); |
| 3 | |
| 4 | namespace App\Model\Entity; |
| 5 | |
| 6 | use Cake\ORM\Entity; |
| 7 | |
| 8 | /** |
| 9 | * SystemLog Entity |
| 10 | * |
| 11 | * @property string $id |
| 12 | * @property string $level |
| 13 | * @property string $message |
| 14 | * @property string|null $context |
| 15 | * @property \Cake\I18n\DateTime $created |
| 16 | * @property string $group_name |
| 17 | */ |
| 18 | class SystemLog extends Entity |
| 19 | { |
| 20 | /** |
| 21 | * Fields that can be mass assigned using newEntity() or patchEntity(). |
| 22 | * |
| 23 | * Note that when '*' is set to true, this allows all unspecified fields to |
| 24 | * be mass assigned. For security purposes, it is advised to set '*' to false |
| 25 | * (or remove it), and explicitly make individual fields accessible as needed. |
| 26 | * |
| 27 | * @var array<string, bool> |
| 28 | */ |
| 29 | protected array $_accessible = [ |
| 30 | 'level' => true, |
| 31 | 'message' => true, |
| 32 | 'context' => true, |
| 33 | 'created' => true, |
| 34 | 'group_name' => true, |
| 35 | ]; |
| 36 | } |