46 lines
1017 B
PHP
46 lines
1017 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model\Entity;
|
|
|
|
use Cake\ORM\Entity;
|
|
|
|
/**
|
|
* User Entity
|
|
*
|
|
* @property int $id
|
|
* @property string $password
|
|
* @property string $nick
|
|
* @property string $first
|
|
* @property string $last
|
|
* @property bool $is_admin
|
|
*/
|
|
class User 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 $_accessible = [
|
|
'password' => true,
|
|
'nick' => true,
|
|
'first' => true,
|
|
'last' => true,
|
|
'is_admin' => true,
|
|
];
|
|
|
|
/**
|
|
* Fields that are excluded from JSON versions of the entity.
|
|
*
|
|
* @var array<string>
|
|
*/
|
|
protected $_hidden = [
|
|
'password',
|
|
];
|
|
}
|