Merge pull request #45643 from nextcloud/backport/45632/stable28

pull/45198/head
Benjamin Gaussorgues 2024-06-05 14:54:12 +07:00 committed by GitHub
commit 0283620f37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

@ -72,7 +72,7 @@ namespace OCA\Core;
*
* @psalm-type CoreResource = array{
* richObjectType: string,
* richObject: array<string, mixed>,
* richObject: array<string, ?mixed>,
* openGraphObject: CoreOpenGraphObject,
* accessible: bool,
* }
@ -85,7 +85,7 @@ namespace OCA\Core;
*
* @psalm-type CoreReference = array{
* richObjectType: string,
* richObject: array<string, mixed>,
* richObject: array<string, ?mixed>,
* openGraphObject: CoreOpenGraphObject,
* accessible: bool,
* }

@ -296,7 +296,8 @@
"richObject": {
"type": "object",
"additionalProperties": {
"type": "object"
"type": "object",
"nullable": true
}
},
"openGraphObject": {
@ -354,7 +355,8 @@
"richObject": {
"type": "object",
"additionalProperties": {
"type": "object"
"type": "object",
"nullable": true
}
},
"openGraphObject": {