-
Notifications
You must be signed in to change notification settings - Fork 266
PHPLIB-1119: Update to Psalm 5 #1131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ function toJSON(object $document): string | |
$changeStream->next(); | ||
|
||
if (time() - $startTime > 3) { | ||
printf("Aborting after 3 seconds...\n"); | ||
echo "Aborting after 3 seconds...\n"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does Psalm object to using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Psalm objected to this, complaining that |
||
break; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking at
psalm-baseline.xml
, this was not enough to enforce the type of$document->encryptedField
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The error is regarding the return type of
decrypt
, which is mixed and can't be made any more specific:The
@var
annotation here prevents a different Psalm error regarding accessing a potentially undefined property.