Document.php
980 Bytes
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
32
33
34
35
36
37
38
<?php
namespace App\Model\Entity;
use Cake\ORM\Entity;
/**
* Document Entity.
*
* @property int $id
* @property string $type_doc
* @property string $chemin
* @property string $description
* @property string $nom
* @property bool $photo
* @property int $materiel_id
* @property \App\Model\Entity\Materiel $materiel
* @property int $suivi_id
* @property \App\Model\Entity\Suivi $suivi
* @property int $type_document_id
* @property \App\Model\Entity\TypeDocument $type_document
*/
class Document 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,
'id' => false
];
}