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/ContactsMenu/Providers/CallProvider.php')
-rw-r--r--lib/ContactsMenu/Providers/CallProvider.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ContactsMenu/Providers/CallProvider.php b/lib/ContactsMenu/Providers/CallProvider.php
index 569fa2bec..307923db2 100644
--- a/lib/ContactsMenu/Providers/CallProvider.php
+++ b/lib/ContactsMenu/Providers/CallProvider.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
* @copyright 2017 Ivan Sein <ivan@nextcloud.com>
@@ -72,7 +73,7 @@ class CallProvider implements IProvider {
}
$user = $this->userManager->get($uid);
- if(!$user instanceof IUser) {
+ if (!$user instanceof IUser) {
// No valid user object
return;
}
@@ -88,5 +89,4 @@ class CallProvider implements IProvider {
$action = $this->actionFactory->newLinkAction($iconUrl, $talkAction, $callUrl);
$entry->addAction($action);
}
-
}