Skip to content

Commit

Permalink
Merge pull request #49192 from nextcloud/bugfix/noid/copy-better-typi…
Browse files Browse the repository at this point in the history
…ng-from-notifications-app

fix(ros): Copy better typing information from Notifications/Spreed app
  • Loading branch information
nickvergessen authored Nov 11, 2024
2 parents 4d69d1e + e388083 commit a3be6ce
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/private/RichObjectStrings/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
/**
* Class Validator
*
* @psalm-import-type RichObjectParameter from IValidator
* @package OCP\RichObjectStrings
* @since 11.0.0
*/
Expand All @@ -27,7 +28,7 @@ public function __construct(

/**
* @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
*/
Expand Down
32 changes: 31 additions & 1 deletion lib/public/RichObjectStrings/IValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,36 @@
/**
* 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 {
Expand All @@ -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
*/
Expand Down

0 comments on commit a3be6ce

Please sign in to comment.