for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Model\Entity;
use Cake\Auth\DefaultPasswordHasher;
use Cake\ORM\Entity;
/**
* User Entity
*
* @property int $id
* @property string $email
* @property string $password
* @property \Cake\I18n\Time $created
* @property \Cake\I18n\Time $modified
*/
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
protected $_accessible = [
'*' => true,
'id' => false
];
* Fields that are excluded from JSON versions of the entity.
protected $_hidden = [
'password'
protected function _setPassword($password)
return (new DefaultPasswordHasher)->hash($password);
}