diff options
| author | Greg Roach <fisharebest@gmail.com> | 2017-11-03 14:57:10 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2017-11-03 14:57:10 +0000 |
| commit | 8d68cabe4cf02d6d8507faf4f53889852be0b6aa (patch) | |
| tree | a80d1d9c85554d7184ec55549037bfeb3602956a /app/User.php | |
| parent | 242e42ea003002c5d393828f361ed0e2fb4ae2e9 (diff) | |
| download | webtrees-8d68cabe4cf02d6d8507faf4f53889852be0b6aa.tar.gz webtrees-8d68cabe4cf02d6d8507faf4f53889852be0b6aa.tar.bz2 webtrees-8d68cabe4cf02d6d8507faf4f53889852be0b6aa.zip | |
Code style
Diffstat (limited to 'app/User.php')
| -rw-r--r-- | app/User.php | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/app/User.php b/app/User.php index 0a4c953e03..d7622507f6 100644 --- a/app/User.php +++ b/app/User.php @@ -222,7 +222,9 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { return new static($row); }, $rows); + return array_map(function($row) { + return new static($row); + }, $rows); } /** @@ -239,7 +241,9 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { return new static($row); }, $rows); + return array_map(function($row) { + return new static($row); + }, $rows); } /** Validate a supplied password @@ -277,7 +281,9 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { return new static($row); }, $rows); + return array_map(function($row) { + return new static($row); + }, $rows); } /** @@ -294,7 +300,9 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { return new static($row); }, $rows); + return array_map(function($row) { + return new static($row); + }, $rows); } /** @@ -310,7 +318,9 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { return new static($row); }, $rows); + return array_map(function($row) { + return new static($row); + }, $rows); } /** @@ -326,7 +336,9 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { return new static($row); }, $rows); + return array_map(function($row) { + return new static($row); + }, $rows); } /** @@ -341,7 +353,9 @@ class User { " JOIN `##session` USING (user_id)" )->fetchAll(); - return array_map(function($row) { return new static($row); }, $rows); + return array_map(function($row) { + return new static($row); + }, $rows); } /** |
