Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ImageGalleriesImage
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 * ImageGalleriesImage Entity
10 *
11 * @property string $id
12 * @property string $image_gallery_id
13 * @property string $image_id
14 * @property int $position
15 * @property string|null $caption
16 * @property \Cake\I18n\DateTime|null $created
17 * @property \Cake\I18n\DateTime|null $modified
18 *
19 * @property \App\Model\Entity\ImageGallery $image_gallery
20 * @property \App\Model\Entity\Image $image
21 */
22class ImageGalleriesImage extends Entity
23{
24    /**
25     * Fields that can be mass assigned using newEntity() or patchEntity().
26     *
27     * Note that when '*' is set to true, this allows all unspecified fields to
28     * be mass assigned. For security purposes, it is advised to set '*' to false
29     * (or remove it), and explicitly make individual fields accessible as needed.
30     *
31     * @var array<string, bool>
32     */
33    protected array $_accessible = [
34        'image_gallery_id' => true,
35        'image_id' => true,
36        'position' => true,
37        'caption' => true,
38        'created' => true,
39        'modified' => true,
40        'image_gallery' => true,
41        'image' => true,
42    ];
43}