diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-01-25 22:36:03 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-01-25 22:36:03 +0100 |
commit | 870fe20acc90cbfb89bf710f441d62f8bcf92f9d (patch) | |
tree | 5550c1b7a663c3b440d2566c8aaf3b87da0131bf /lib/private/Collaboration/Collaborators/UserPlugin.php | |
parent | b9bbb894f8b01e000bb5e3a8a82db7bebad3ea00 (diff) | |
download | nextcloud-server-870fe20acc90cbfb89bf710f441d62f8bcf92f9d.tar.gz nextcloud-server-870fe20acc90cbfb89bf710f441d62f8bcf92f9d.zip |
Use $var[] = $a instead of array_push - 2x faster
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/private/Collaboration/Collaborators/UserPlugin.php')
-rw-r--r-- | lib/private/Collaboration/Collaborators/UserPlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Collaboration/Collaborators/UserPlugin.php b/lib/private/Collaboration/Collaborators/UserPlugin.php index ad677703547..d2639249d56 100644 --- a/lib/private/Collaboration/Collaborators/UserPlugin.php +++ b/lib/private/Collaboration/Collaborators/UserPlugin.php @@ -128,13 +128,13 @@ class UserPlugin implements ISearchPlugin { } if ($addUser) { - array_push($result['exact'], [ + $result['exact'][] = [ 'label' => $user->getDisplayName(), 'value' => [ 'shareType' => Share::SHARE_TYPE_USER, 'shareWith' => $user->getUID(), ], - ]); + ]; } } } |