diff options
| author | Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com> | 2017-12-03 10:41:03 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2017-12-03 09:41:03 +0000 |
| commit | 4a3c5b10f904e15aa9db69a2ef0746578d828deb (patch) | |
| tree | 76f8492cbd37681a3732d3eabe888221b3c34c08 /app/User.php | |
| parent | 7bec14ac5948ab6ff50ff9495e5b8e649b30efe3 (diff) | |
| download | webtrees-4a3c5b10f904e15aa9db69a2ef0746578d828deb.tar.gz webtrees-4a3c5b10f904e15aa9db69a2ef0746578d828deb.tar.bz2 webtrees-4a3c5b10f904e15aa9db69a2ef0746578d828deb.zip | |
Scrutinizer Auto-Fixes (#1524)
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
Diffstat (limited to 'app/User.php')
| -rw-r--r-- | app/User.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/User.php b/app/User.php index 230120e521..fb0dde5038 100644 --- a/app/User.php +++ b/app/User.php @@ -224,7 +224,7 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { + return array_map(function ($row) { return new static($row); }, $rows); } @@ -243,7 +243,7 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { + return array_map(function ($row) { return new static($row); }, $rows); } @@ -283,7 +283,7 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { + return array_map(function ($row) { return new static($row); }, $rows); } @@ -302,7 +302,7 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { + return array_map(function ($row) { return new static($row); }, $rows); } @@ -320,7 +320,7 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { + return array_map(function ($row) { return new static($row); }, $rows); } @@ -338,7 +338,7 @@ class User { " ORDER BY real_name" )->fetchAll(); - return array_map(function($row) { + return array_map(function ($row) { return new static($row); }, $rows); } @@ -355,7 +355,7 @@ class User { " JOIN `##session` USING (user_id)" )->fetchAll(); - return array_map(function($row) { + return array_map(function ($row) { return new static($row); }, $rows); } |
