summaryrefslogtreecommitdiff
path: root/core/classes/authentication/User.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/classes/authentication/User.php')
-rw-r--r--core/classes/authentication/User.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/core/classes/authentication/User.php b/core/classes/authentication/User.php
index 06f0ddb..babc7fd 100644
--- a/core/classes/authentication/User.php
+++ b/core/classes/authentication/User.php
@@ -56,14 +56,6 @@ class User implements UserInterface
return $this->roles;
}
- /** getPrivileges
- * @return array
- */
- public function getPrivileges(): array
- {
- return $this->privileges;
- }
-
/** isEnabled
* @return bool
*/
@@ -110,16 +102,6 @@ class User implements UserInterface
return $this;
}
- /** setPrivileges()
- *
- * @param array $roles
- * @return User
- */
- public function setPrivileges(array $privileges): self
- {
- $this->privileges = $privileges;
- return $this;
- }
/** setEnabled
*