Merge pull request #49192 from nextcloud/bugfix/noid/copy-better-typing-from-notifications-app

fix(ros): Copy better typing information from Notifications/Spreed app
fix/no-issues/add-encryption-available-config
Joas Schilling 2024-11-11 15:46:45 +07:00 committed by GitHub
commit a3be6ce6ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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
*/