mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Merge pull request #50035 from nextcloud/fix/http/jsonresponse-data-type
fix(HTTP): Adjust JSONResponse data type
This commit is contained in:
commit
8953f44534
2 changed files with 1 additions and 6 deletions
|
|
@ -878,11 +878,6 @@
|
|||
<code><![CDATA[$cacheData]]></code>
|
||||
</MoreSpecificImplementedParamType>
|
||||
</file>
|
||||
<file src="apps/files_sharing/lib/Middleware/SharingCheckMiddleware.php">
|
||||
<InvalidArgument>
|
||||
<code><![CDATA[$exception->getMessage()]]></code>
|
||||
</InvalidArgument>
|
||||
</file>
|
||||
<file src="apps/files_sharing/lib/MountProvider.php">
|
||||
<RedundantFunctionCall>
|
||||
<code><![CDATA[array_values]]></code>
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ use OCP\AppFramework\Http;
|
|||
* A renderer for JSON calls
|
||||
* @since 6.0.0
|
||||
* @template S of int
|
||||
* @template-covariant T of array|object|\stdClass|\JsonSerializable
|
||||
* @template-covariant T of null|string|int|float|bool|array|\stdClass|\JsonSerializable
|
||||
* @template H of array<string, mixed>
|
||||
* @template-extends Response<int, array<string, mixed>>
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue