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