1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\Security;
9:
10: use Nette;
11:
12:
13: /**
14: * Represents the user of application.
15: *
16: * @author David Grudl
17: */
18: interface IIdentity
19: {
20:
21: /**
22: * Returns the ID of user.
23: * @return mixed
24: */
25: function getId();
26:
27: /**
28: * Returns a list of roles that the user is a member of.
29: * @return array
30: */
31: function getRoles();
32:
33: }
34: