summaryrefslogtreecommitdiffstats
path: root/lib/Interfaces/IActivityPubInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Interfaces/IActivityPubInterface.php')
-rw-r--r--lib/Interfaces/IActivityPubInterface.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Interfaces/IActivityPubInterface.php b/lib/Interfaces/IActivityPubInterface.php
index c1599dbd..d0dcc4c1 100644
--- a/lib/Interfaces/IActivityPubInterface.php
+++ b/lib/Interfaces/IActivityPubInterface.php
@@ -31,6 +31,7 @@ declare(strict_types=1);
namespace OCA\Social\Interfaces;
+use OCA\Social\Exceptions\ItemNotFoundException;
use OCA\Social\Model\ActivityPub\ACore;
@@ -61,7 +62,7 @@ interface IActivityPubInterface {
/**
* @param string $id
*
- * @throw ItemNotFoundException
+ * @throws ItemNotFoundException
* @return ACore
*/
public function getItemById(string $id): ACore;