Blame view

src/Model/Entity/GroupesMetier.php 807 Bytes
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
12
<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;

/**
 * GroupesMetier Entity.
 *
 * @property int $id
 * @property string $nom
 * @property string $description
 * @property \App\Model\Entity\Materiel[] $materiels
e9a0cc56   Alexandre   Version: 2.4.6.0
13
 * @property \App\Model\Entity\Suivi[] $suivis
64fba1a2   Alexandre   Base du projet : ...
14
 * @property \App\Model\Entity\User[] $users
6c4edfa3   Alexandre   First Commit LabI...
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 */
class GroupesMetier extends Entity
{

    /**
     * Fields that can be mass assigned using newEntity() or patchEntity().
     *
     * Note that when '*' is set to true, this allows all unspecified fields to
     * be mass assigned. For security purposes, it is advised to set '*' to false
     * (or remove it), and explicitly make individual fields accessible as needed.
     *
     * @var array
     */
    protected $_accessible = [
        '*' => true,
63c3cb16   epallier   Nombreux petits b...
30
        'id' => false
6c4edfa3   Alexandre   First Commit LabI...
31
32
    ];
}