aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller
diff options
context:
space:
mode:
authorjld3103 <jld3103yt@gmail.com>2023-09-14 12:26:14 +0200
committerjld3103 <jld3103yt@gmail.com>2023-09-14 15:49:13 +0200
commit79b8b5c0f20ffee738b57f3b2b5779a8002a9c23 (patch)
treec5eac6222105aadaed1120a2db846b4a74829556 /core/Controller
parent30a7eabad3f00fe10fa2d66725297a559aa82c3c (diff)
downloadnextcloud-server-79b8b5c0f20ffee738b57f3b2b5779a8002a9c23.tar.gz
nextcloud-server-79b8b5c0f20ffee738b57f3b2b5779a8002a9c23.zip
core: Fix OpenAPI for reference API
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'core/Controller')
-rw-r--r--core/Controller/CollaborationResourcesController.php6
-rw-r--r--core/Controller/ReferenceApiController.php4
2 files changed, 5 insertions, 5 deletions
diff --git a/core/Controller/CollaborationResourcesController.php b/core/Controller/CollaborationResourcesController.php
index 832b4207e6f..e1389309c15 100644
--- a/core/Controller/CollaborationResourcesController.php
+++ b/core/Controller/CollaborationResourcesController.php
@@ -44,7 +44,7 @@ use OCP\IUserSession;
use Psr\Log\LoggerInterface;
/**
- * @psalm-import-type CoreOpenGraphObject from ResponseDefinitions
+ * @psalm-import-type CoreResource from ResponseDefinitions
* @psalm-import-type CoreCollection from ResponseDefinitions
*/
class CollaborationResourcesController extends OCSController {
@@ -313,7 +313,7 @@ class CollaborationResourcesController extends OCSController {
}
/**
- * @return CoreOpenGraphObject[]
+ * @return CoreResource[]
*/
protected function prepareResources(array $resources): array {
$result = [];
@@ -331,7 +331,7 @@ class CollaborationResourcesController extends OCSController {
}
/**
- * @return CoreOpenGraphObject
+ * @return CoreResource
*/
protected function prepareResource(IResource $resource): array {
if (!$resource->canAccess($this->userSession->getUser())) {
diff --git a/core/Controller/ReferenceApiController.php b/core/Controller/ReferenceApiController.php
index c16ca348d88..3d144c8559f 100644
--- a/core/Controller/ReferenceApiController.php
+++ b/core/Controller/ReferenceApiController.php
@@ -55,7 +55,7 @@ class ReferenceApiController extends \OCP\AppFramework\OCSController {
* @param string $text Text to extract from
* @param bool $resolve Resolve the references
* @param int $limit Maximum amount of references to extract
- * @return DataResponse<Http::STATUS_OK, array{references: array<string, CoreReference|mixed|null>}, array{}>
+ * @return DataResponse<Http::STATUS_OK, array{references: array<string, CoreReference|null>}, array{}>
*/
public function extract(string $text, bool $resolve = false, int $limit = 1): DataResponse {
$references = $this->referenceManager->extractReferences($text);
@@ -99,7 +99,7 @@ class ReferenceApiController extends \OCP\AppFramework\OCSController {
*
* @param string[] $references References to resolve
* @param int $limit Maximum amount of references to resolve
- * @return DataResponse<Http::STATUS_OK, array{references: array<string, CoreReference|mixed|null>}, array{}>
+ * @return DataResponse<Http::STATUS_OK, array{references: array<string, CoreReference|null>}, array{}>
*/
public function resolve(array $references, int $limit = 1): DataResponse {
$result = [];