-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[BUG]: Incorrect return type of Phalcon\Mvc\Model\Query::getExpression #15553
Labels
5.0
The issues we want to solve in the 5.0 release
breaks bc
Functionality that breaks Backwards Compatibility
bug
A bug report
status: medium
Medium
Comments
Jeckerson
added
5.0
The issues we want to solve in the 5.0 release
breaks bc
Functionality that breaks Backwards Compatibility
enhancement
Enhancement to the framework
and removed
status: unverified
Unverified
labels
Jun 24, 2021
BeMySlaveDarlin
pushed a commit
to BeMySlaveDarlin/cphalcon
that referenced
this issue
Sep 21, 2021
BeMySlaveDarlin
pushed a commit
to BeMySlaveDarlin/cphalcon
that referenced
this issue
Sep 21, 2021
BeMySlaveDarlin
pushed a commit
to BeMySlaveDarlin/cphalcon
that referenced
this issue
Sep 21, 2021
BeMySlaveDarlin
pushed a commit
to BeMySlaveDarlin/cphalcon
that referenced
this issue
Sep 21, 2021
5 tasks
BeMySlaveDarlin
pushed a commit
to BeMySlaveDarlin/cphalcon
that referenced
this issue
Sep 21, 2021
BeMySlaveDarlin
pushed a commit
to BeMySlaveDarlin/cphalcon
that referenced
this issue
Sep 21, 2021
BeMySlaveDarlin
pushed a commit
to BeMySlaveDarlin/cphalcon
that referenced
this issue
Sep 21, 2021
BeMySlaveDarlin
pushed a commit
to BeMySlaveDarlin/cphalcon
that referenced
this issue
Sep 21, 2021
BeMySlaveDarlin
pushed a commit
to BeMySlaveDarlin/cphalcon
that referenced
this issue
Sep 21, 2021
niden
added a commit
that referenced
this issue
Sep 30, 2021
…-type #15553 - Fix Query::getExpression return type
niden
added
status: medium
Medium
and removed
enhancement
Enhancement to the framework
labels
Sep 30, 2021
Resolved in #15686 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
5.0
The issues we want to solve in the 5.0 release
breaks bc
Functionality that breaks Backwards Compatibility
bug
A bug report
status: medium
Medium
Describe the bug
While trying to analyze one bug related to
Model\Query
, I noticed strange behavior of thegetExpression
method. It hasstring
as its return type.cphalcon/phalcon/Mvc/Model/Query.zep
Line 1448 in 2ddd6a5
But actually it always returns an array.
cphalcon/phalcon/Mvc/Model/Query.zep
Lines 2011 to 2023 in 2ddd6a5
Expected behavior
I don't know how Zephir handles this, but it seems to be an invalid return type and it must be an
array
?Details
The text was updated successfully, but these errors were encountered: