-
Notifications
You must be signed in to change notification settings - Fork 209
PHPC-2457: Fix using array items by reference #1697
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
Merged
alcaeus
merged 7 commits into
mongodb:v1.20
from
alcaeus:phpc-2457-fix-array-fetch-deref
Sep 27, 2024
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d3592be
Remove conditional definitions for zend_engine 2
alcaeus 18432ad
Inline compatibility macros for zend_engine 2
alcaeus 04fc88c
Simplify switch and fix cast in php_array_api
alcaeus 2e66a02
Add deref variant to php_array_api
alcaeus caf057e
Correctly handle zval references when using php_array_fetch
alcaeus 97351ed
Adapt formatting to match rest of file
alcaeus 05e715d
Flip test names
alcaeus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,30 @@ | ||
--TEST-- | ||
PHPC-2457: Query options can be passed reference | ||
PHPC-2457: Query modifiers can be passed reference | ||
--FILE-- | ||
<?php | ||
|
||
$collation = ['locale' => 'fr_FR', 'strength' => 2]; | ||
$let = ['x' => 1]; | ||
$sort = ['_id' => 1]; | ||
$modifiers = ['$orderby' => ['x' => 1]]; | ||
|
||
$query = new MongoDB\Driver\Query([], [ | ||
'collation' => &$collation, | ||
'let' => &$let, | ||
'sort' => &$sort, | ||
'modifiers' => &$modifiers, | ||
]); | ||
|
||
var_dump($query); | ||
|
||
?> | ||
===DONE=== | ||
<?php exit(0); ?> | ||
--EXPECT-- | ||
--EXPECTF-- | ||
Deprecated: MongoDB\Driver\Query::__construct(): The "modifiers" option is deprecated and will be removed in a future release in %s | ||
object(MongoDB\Driver\Query)#1 (3) { | ||
["filter"]=> | ||
object(stdClass)#2 (0) { | ||
} | ||
["options"]=> | ||
object(stdClass)#6 (3) { | ||
["collation"]=> | ||
object(stdClass)#3 (2) { | ||
["locale"]=> | ||
string(5) "fr_FR" | ||
["strength"]=> | ||
int(2) | ||
} | ||
["let"]=> | ||
object(stdClass)#4 (1) { | ||
["x"]=> | ||
int(1) | ||
} | ||
object(stdClass)#4 (1) { | ||
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. In the future, note that you can use |
||
["sort"]=> | ||
object(stdClass)#5 (1) { | ||
["_id"]=> | ||
object(stdClass)#3 (1) { | ||
["x"]=> | ||
int(1) | ||
} | ||
} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I assume this is
clang-format
, but I find this formatting very bizarre.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's copy-paste from a previous occurrence, but I'll fix it