summaryrefslogtreecommitdiff
path: root/app/Services/UserService.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-03-01 09:03:45 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-03-01 09:03:59 +0000
commit6be338f54a6feb8abc5dbe770cb8463c4699d9b0 (patch)
tree8e5dfeea5e5bbf3a11a1bf3f77574c88acc5e2f9 /app/Services/UserService.php
parent5206405d15dd895c306e1f66583e11d1691e57fa (diff)
downloadwebtrees-6be338f54a6feb8abc5dbe770cb8463c4699d9b0.tar.gz
webtrees-6be338f54a6feb8abc5dbe770cb8463c4699d9b0.tar.bz2
webtrees-6be338f54a6feb8abc5dbe770cb8463c4699d9b0.zip
Method should not be static
Diffstat (limited to 'app/Services/UserService.php')
-rw-r--r--app/Services/UserService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Services/UserService.php b/app/Services/UserService.php
index 0e1b3bf9fc..0b05bbb58b 100644
--- a/app/Services/UserService.php
+++ b/app/Services/UserService.php
@@ -266,7 +266,7 @@ class UserService
*
* @return User
*/
- public static function create(string $user_name, string $real_name, string $email, string $password): User
+ public function create(string $user_name, string $real_name, string $email, string $password): User
{
DB::table('user')->insert([
'user_name' => $user_name,