2020-05-29 13:41:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Model\Entity;
|
|
|
|
|
|
|
|
use App\Model\Entity\AppModel;
|
|
|
|
use Cake\ORM\Entity;
|
|
|
|
|
|
|
|
class Individual extends AppModel
|
|
|
|
{
|
2021-06-28 14:04:01 +02:00
|
|
|
protected $_accessible = [
|
|
|
|
'*' => true,
|
|
|
|
'id' => false,
|
|
|
|
'uuid' => false,
|
|
|
|
];
|
2021-06-28 14:49:38 +02:00
|
|
|
|
|
|
|
protected $_accessibleOnNew = [
|
|
|
|
'uuid' => true,
|
|
|
|
];
|
2020-05-29 13:41:58 +02:00
|
|
|
}
|