getData() */ interface IIdentity { /** * Returns the ID of user. */ function getId(): string|int; /** * Returns a list of roles that the user is a member of. * @return list */ function getRoles(): array; /** * Returns user data. */ //function getData(): array; }