Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Chat/AutoComplete/Sorter.php')
-rw-r--r--lib/Chat/AutoComplete/Sorter.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Chat/AutoComplete/Sorter.php b/lib/Chat/AutoComplete/Sorter.php
index 2d35d5f49..e9994e19c 100644
--- a/lib/Chat/AutoComplete/Sorter.php
+++ b/lib/Chat/AutoComplete/Sorter.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018 Joas Schilling <coding@schilljs.com>
@@ -22,7 +23,6 @@ declare(strict_types=1);
namespace OCA\Talk\Chat\AutoComplete;
-
use OCA\Talk\Chat\CommentsManager;
use OCP\Collaboration\AutoComplete\ISorter;
@@ -62,9 +62,9 @@ class Sorter implements ISorter {
$context['itemId'],
'comment',
$type,
- array_map(function($suggestion) {
+ array_map(function ($suggestion) {
return $suggestion['value']['shareWith'];
- }, $byType));
+ }, $byType));
$search = $context['search'];
@@ -75,7 +75,7 @@ class Sorter implements ISorter {
if (stripos($b['label'], $search) !== 0) {
return -1;
}
- } else if (stripos($b['label'], $search) === 0) {
+ } elseif (stripos($b['label'], $search) === 0) {
return 1;
}
}