%PDF- %PDF-
| Direktori : /www/varak.net/losik.varak.net/vendor/nette/security/src/Security/ |
| Current File : //www/varak.net/losik.varak.net/vendor/nette/security/src/Security/IIdentity.php |
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
declare(strict_types=1);
namespace Nette\Security;
/**
* Represents the user of application.
* @method array getData()
*/
interface IIdentity
{
/**
* Returns the ID of user.
* @return mixed
*/
function getId();
/**
* Returns a list of roles that the user is a member of.
*/
function getRoles(): array;
/**
* Returns user data.
*/
//function getData(): array;
}