X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fuser%2Fsrc%2FPlugin%2Fviews%2Fargument%2FUid.php;h=5efbecd531eb08c08d7bd5910dc8beb93a233fa0;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hp=77fac07322f35ca9d420e56a68aa71e1916c8cb5;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/modules/user/src/Plugin/views/argument/Uid.php b/web/core/modules/user/src/Plugin/views/argument/Uid.php index 77fac0732..5efbecd53 100644 --- a/web/core/modules/user/src/Plugin/views/argument/Uid.php +++ b/web/core/modules/user/src/Plugin/views/argument/Uid.php @@ -51,10 +51,10 @@ class Uid extends NumericArgument { * Override the behavior of title(). Get the name of the user. * * @return array - * A list of usernames. + * A list of usernames. */ public function titleQuery() { - return array_map(function($account) { + return array_map(function ($account) { return $account->label(); }, $this->storage->loadMultiple($this->value)); }