summaryrefslogtreecommitdiff
path: root/core/classes/authentication/User.php
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-16 01:09:44 +0200
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-16 01:09:44 +0200
commit1e438654005bd408447dc19c8a96099d228bb1aa (patch)
treedc86181a0d3e130e9c18c911ca3cdac39cd6e4b6 /core/classes/authentication/User.php
parent51b3554ff2988ac61ba3f604431e09941cd95545 (diff)
downloadclassroom-1e438654005bd408447dc19c8a96099d228bb1aa.tar.gz
classroom-1e438654005bd408447dc19c8a96099d228bb1aa.tar.bz2
classroom-1e438654005bd408447dc19c8a96099d228bb1aa.zip
working on user management
Diffstat (limited to 'core/classes/authentication/User.php')
-rw-r--r--core/classes/authentication/User.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/core/classes/authentication/User.php b/core/classes/authentication/User.php
index 8f5aecb..4aef375 100644
--- a/core/classes/authentication/User.php
+++ b/core/classes/authentication/User.php
@@ -65,7 +65,8 @@ class User implements UserInterface
* -------------------------------------------------------------------------
*/
- /** setUserName
+ /** setUserName()
+ *
* @param string $userName
* @return User
*/
@@ -75,7 +76,8 @@ class User implements UserInterface
return $this;
}
- /** setPassword
+ /** setPassword()
+ *
* @param string $password
* @return User
*/
@@ -85,7 +87,8 @@ class User implements UserInterface
return $this;
}
- /** setRoles
+ /** setRoles()
+ *
* @param array $roles
* @return User
*/
@@ -95,7 +98,8 @@ class User implements UserInterface
return $this;
}
- /**
+ /** setEnabled
+ *
* @param bool $enabled
* @return User
*/