forked from CakeDC/cakephp-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthStore.php
More file actions
33 lines (30 loc) · 829 Bytes
/
AuthStore.php
File metadata and controls
33 lines (30 loc) · 829 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
<?php
declare(strict_types=1);
namespace CakeDC\Api\Model\Entity;
use Cake\ORM\Entity;
/**
* AuthStore Entity
*
* @property string $id
* @property array|null $store
* @property \Cake\I18n\FrozenTime $created
* @property \Cake\I18n\FrozenTime $modified
*/
class AuthStore 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<string, bool>
*/
protected array $_accessible = [
'id' => true,
'store' => true,
'created' => true,
'modified' => true,
];
}