summaryrefslogtreecommitdiffstats
path: root/lib/public/Collaboration/Reference/IReferenceManager.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Collaboration/Reference/IReferenceManager.php')
-rw-r--r--lib/public/Collaboration/Reference/IReferenceManager.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/public/Collaboration/Reference/IReferenceManager.php b/lib/public/Collaboration/Reference/IReferenceManager.php
index 8d2110911d3..e9a53e8a61a 100644
--- a/lib/public/Collaboration/Reference/IReferenceManager.php
+++ b/lib/public/Collaboration/Reference/IReferenceManager.php
@@ -1,4 +1,6 @@
<?php
+
+declare(strict_types=1);
/**
* @copyright Copyright (c) 2022 Julius Härtl <jus@bitgrid.net>
*
@@ -38,7 +40,8 @@ interface IReferenceManager {
*
* This method has a fallback to always provide the open graph metadata,
* but may still return null in case this is disabled or the fetching fails
+ *
* @since 25.0.0
*/
- public function resolveReference(string $reference): ?IReference;
+ public function resolveReference(string $referenceId): ?IReference;
}