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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2020-07-30 22:18:20 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2020-07-30 22:18:20 +0300
commit04521c6afc77f095697e8196790400920756149a (patch)
tree2fd86ae881a4fa4f5b5b6f31ccd36b571060ad3a /apps/federatedfilesharing/lib
parentb79e34c57ba74246a03a66045a6b792e35da1d32 (diff)
coding style fixes
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/federatedfilesharing/lib')
-rw-r--r--apps/federatedfilesharing/lib/Notifier.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/federatedfilesharing/lib/Notifier.php b/apps/federatedfilesharing/lib/Notifier.php
index cae3fc2aa99..42a07abb38a 100644
--- a/apps/federatedfilesharing/lib/Notifier.php
+++ b/apps/federatedfilesharing/lib/Notifier.php
@@ -146,14 +146,14 @@ class Notifier implements INotifier {
switch ($action->getLabel()) {
case 'accept':
$action->setParsedLabel(
- (string) $l->t('Accept')
+ (string)$l->t('Accept')
)
- ->setPrimary(true);
+ ->setPrimary(true);
break;
case 'decline':
$action->setParsedLabel(
- (string) $l->t('Decline')
+ (string)$l->t('Decline')
);
break;
}