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/Collaboration/Collaborators/Listener.php')
-rw-r--r--lib/Collaboration/Collaborators/Listener.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Collaboration/Collaborators/Listener.php b/lib/Collaboration/Collaborators/Listener.php
index 57bd52952..b5b2136ef 100644
--- a/lib/Collaboration/Collaborators/Listener.php
+++ b/lib/Collaboration/Collaborators/Listener.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
* @author Joachim Bauch <mail@joachim-bauch.de>
@@ -57,8 +58,7 @@ class Listener {
}
public static function register(IEventDispatcher $dispatcher): void {
-
- $dispatcher->addListener(IManager::class . '::filterResults', static function(AutoCompleteEvent $event) {
+ $dispatcher->addListener(IManager::class . '::filterResults', static function (AutoCompleteEvent $event) {
/** @var self $listener */
$listener = \OC::$server->query(self::class);