-
Notifications
You must be signed in to change notification settings - Fork 1
Hotfix/deep copy support #28
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
base: master
Are you sure you want to change the base?
Conversation
- Clean up duplicate entries in yaml configs - Refactor deep-copy: use prepared statements and bind values for inserts
Set psalm version to 5.26.1
zonky2
left a comment
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.
LGTM
| $widget | ||
| ->expects(self::any()) | ||
| ->method('import') | ||
| ->withConsecutive([Config::class, 'Config']); |
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.
shouldn't this whole block rathe be:
$widget
->expects($this->once())
->method('import')
->with(Config::class, 'Config');
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.
It looks like the "import" call has been removed.
| trusted-keys: | ||
| # composer-require-checker | ||
| - 033E5F8D801A2F8D | ||
| - B2BDAAAC6F1FDE528CD9EEC9033E5F8D801A2F8D |
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.
While these are not wrong, they point to a bug in phpcq... Apparently the cli of gnupg uses a different key fingerprint hash len than the php pgp extension.
We should fix this upstream and then remove them here again.
|
@discordier I've made a few updates. However, the "import" call has been removed from the phpunit section. Could you please take another look at it via the pull request? |
Description
Please explain the detailed changes you made here.
Reference any issue number this pull request fixes.
Checklist
@authorsin touched PHP files