mirror of
https://github.com/nextcloud/server.git
synced 2026-05-25 02:34:12 -04:00
Merge pull request #49192 from nextcloud/bugfix/noid/copy-better-typing-from-notifications-app
fix(ros): Copy better typing information from Notifications/Spreed app
This commit is contained in:
commit
a3be6ce6ac
2 changed files with 33 additions and 2 deletions
|
|
@ -14,6 +14,7 @@ use OCP\RichObjectStrings\IValidator;
|
|||
/**
|
||||
* Class Validator
|
||||
*
|
||||
* @psalm-import-type RichObjectParameter from IValidator
|
||||
* @package OCP\RichObjectStrings
|
||||
* @since 11.0.0
|
||||
*/
|
||||
|
|
@ -27,7 +28,7 @@ class Validator implements IValidator {
|
|||
|
||||
/**
|
||||
* @param string $subject
|
||||
* @param array<non-empty-string, array<non-empty-string, string>> $parameters
|
||||
* @param array<non-empty-string, RichObjectParameter> $parameters
|
||||
* @throws InvalidObjectExeption
|
||||
* @since 11.0.0
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -11,6 +11,36 @@ namespace OCP\RichObjectStrings;
|
|||
/**
|
||||
* Class Validator
|
||||
*
|
||||
* @psalm-type RichObjectParameter = array{
|
||||
* type: string,
|
||||
* id: string,
|
||||
* name: string,
|
||||
* server?: string,
|
||||
* link?: string,
|
||||
* 'call-type'?: 'one2one'|'group'|'public',
|
||||
* 'icon-url'?: string,
|
||||
* 'message-id'?: string,
|
||||
* boardname?: string,
|
||||
* stackname?: string,
|
||||
* size?: string,
|
||||
* path?: string,
|
||||
* mimetype?: string,
|
||||
* 'preview-available'?: 'yes'|'no',
|
||||
* mtime?: string,
|
||||
* latitude?: string,
|
||||
* longitude?: string,
|
||||
* description?: string,
|
||||
* thumb?: string,
|
||||
* website?: string,
|
||||
* visibility?: '0'|'1',
|
||||
* assignable?: '0'|'1',
|
||||
* conversation?: string,
|
||||
* etag?: string,
|
||||
* permissions?: string,
|
||||
* width?: string,
|
||||
* height?: string,
|
||||
* }
|
||||
*
|
||||
* @since 11.0.0
|
||||
*/
|
||||
interface IValidator {
|
||||
|
|
@ -22,7 +52,7 @@ interface IValidator {
|
|||
|
||||
/**
|
||||
* @param string $subject
|
||||
* @param array<non-empty-string, array<non-empty-string, string>> $parameters
|
||||
* @param array<non-empty-string, RichObjectParameter> $parameters
|
||||
* @throws InvalidObjectExeption
|
||||
* @since 11.0.0
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue