/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakedc
/
auth
/
tests
/
App
/
Model
/
Entity
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/auth/tests/App/Model/Entity
mkdir
upload
Name
Size
Mode
Actions
User.php
2252
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/auth/tests/App/Model/Entity/User.php
(2252B)
<?php declare(strict_types=1); /** * Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @copyright Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com) * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ namespace CakeDC\Auth\Test\App\Model\Entity; use Authentication\PasswordHasher\DefaultPasswordHasher; use Cake\ORM\Entity; /** * User Entity. */ class User extends Entity { /** * Fields that can be mass assigned using newEntity() or patchEntity(). * * @var array */ protected $_accessible = [ '*' => true, 'id' => false, 'is_superuser' => false, 'role' => false, ]; /** * Fields that are excluded from JSON an array versions of the entity. * * @var array */ protected $_hidden = [ 'password', 'token', 'token_expires', 'api_token', ]; /** * @param string $password password that will be set. * @return bool|string */ protected function _setPassword($password) { return $this->hashPassword($password); } /** * Hash a password using the configured password hasher, * use DefaultPasswordHasher if no one was configured * * @param string $password password to be hashed * @return mixed */ public function hashPassword($password) { $PasswordHasher = $this->getPasswordHasher(); return $PasswordHasher->hash($password); } /** * Return the configured Password Hasher * * @return mixed */ public function getPasswordHasher() { return new DefaultPasswordHasher(); } /** * Checks if a password is correctly hashed * * @param string $password password that will be check. * @param string $hashedPassword hash used to check password. * @return bool */ public function checkPassword($password, $hashedPassword) { $PasswordHasher = $this->getPasswordHasher(); return $PasswordHasher->check($password, $hashedPassword); } }
Save
cmd:
run