Blame view

src/Model/Entity/Formule.php 858 Bytes
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;

/**
 * Formule Entity.
 *
 * @property int $id
 * @property string $nommesure
 * @property string $symbole
 * @property string $unite
 * @property \App\Model\Entity\Variable[] $variables
 * @property \App\Model\Entity\Fichemetrologique $fichemetrologique
 * @property int $nbVariable
 * @property string $formule
 */
class Formule 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...
32
        'id' => false
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
33
34
    ];
}