mirror of
https://github.com/nextcloud/server.git
synced 2025-02-23 08:28:36 +00:00
Merge pull request #45644 from nextcloud/backport/45632/stable29
This commit is contained in:
commit
b9c5f6a326
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,
|
||||
* }
|
||||
|
|
|
@ -356,7 +356,8 @@
|
|||
"richObject": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"type": "object"
|
||||
"type": "object",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
"openGraphObject": {
|
||||
|
@ -414,7 +415,8 @@
|
|||
"richObject": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"type": "object"
|
||||
"type": "object",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
"openGraphObject": {
|
||||
|
|
Loading…
Reference in a new issue