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/PublicShare/TemplateLoader.php')
-rw-r--r--lib/PublicShare/TemplateLoader.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/PublicShare/TemplateLoader.php b/lib/PublicShare/TemplateLoader.php
index de5f55554..38a18f330 100644
--- a/lib/PublicShare/TemplateLoader.php
+++ b/lib/PublicShare/TemplateLoader.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
@@ -43,7 +44,6 @@ use Symfony\Component\EventDispatcher\GenericEvent;
* needed.
*/
class TemplateLoader {
-
use TInitialState;
public function __construct(IInitialStateService $initialStateService,
@@ -57,7 +57,7 @@ class TemplateLoader {
}
public static function register(IEventDispatcher $dispatcher): void {
- $dispatcher->addListener('OCA\Files_Sharing::loadAdditionalScripts', static function(GenericEvent $event) {
+ $dispatcher->addListener('OCA\Files_Sharing::loadAdditionalScripts', static function (GenericEvent $event) {
/** @var IShare $share */
$share = $event->getArgument('share');
/** @var self $templateLoader */
@@ -89,5 +89,4 @@ class TemplateLoader {
$this->publishInitialStateForGuest();
}
-
}