Uh oh!
There was an error while loading. Please reload this page.
Annotate IContainer so Psalm knows what resove and query return - #23377
Conversation
ChristophWurst
commented
Oct 12, 2020
🙈 |
MorrisJobke
commented
Oct 12, 2020
The encryption app needs to move from those random names to just use the full namespace and then most of this is done. |
MorrisJobke
commented
Oct 12, 2020
Also then most of the encryption app can be auto wired ;) |
ChristophWurst
commented
Oct 12, 2020
While that is true it's still ok to use string that are not a FQCN. Let me see if we can teach Psalm that. |
ChristophWurst
commented
Oct 13, 2020
The last commit will be removed. I'm just testing vimeo/psalm#4310. |
25f0568 to
95ea74fCompareSigned-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
95ea74f to
f9f20b6CompareMorrisJobke
commented
Oct 14, 2020
Rebased because other PR was merged. |
MorrisJobke
commented
Oct 14, 2020
Only 4 errors left 🙌 |
But in other news these are new errors detected because of the typing 🚀 |
ChristophWurst
commented
Oct 14, 2020
/backport f9f20b6 to stable20 |
MorrisJobke
commented
Oct 14, 2020
@ChristophWurst Ready for review, right? |
Uh oh!
There was an error while loading. Please reload this page.
2ffc565 to
0644a74Compare
This comment has been minimized.
This comment has been minimized.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
0644a74 to
f464ef0CompareChristophWurst
commented
Oct 14, 2020
Fixed 🙏 |
| /** @var ISearchPlugin $searchPlugin */ | ||
| $searchPlugin = $this->c->resolve($plugin); | ||
| $hasMoreResults |= $searchPlugin->search($search, $limit, $offset, $searchResult); | ||
| $hasMoreResults = $searchPlugin->search($search, $limit, $offset, $searchResult) || $hasMoreResults; |
There was a problem hiding this comment.
@blizzz hope the logic is unchanged. The search call should always happen no matter the value of $hasMoreResults, right? Asking because there might be semantics of the short-circuit evaluation of an or.
There was a problem hiding this comment.
Ah right ... but yes - the search should happen in every plugin and then it is combined afterwards.
🤖 beep boop beep 🤖 Here are the logs for the failed build: Status of 34135: failureacceptance-users
Show full log |

@kesselb IIRC you wanted to add this some time ago. Were there any issues?