-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Mark getSelectConditionStatementColumnSQL method as private #1292
Conversation
Hello, thank you for creating this pull request. I have automatically opened an issue http://www.doctrine-project.org/jira/browse/DDC-3549 We use Jira to track the state of pull requests and the versions they got |
@@ -106,6 +106,10 @@ or any public API on instantiated objects. | |||
Please implement the `Doctrine\ORM\Repository\RepositoryFactory` interface instead of extending | |||
the `Doctrine\ORM\Repository\DefaultRepositoryFactory`. | |||
|
|||
## BC BREAK: `Doctrine/\ORM\Persisters\BasicEntityPersister::getSelectConditionStatementColumnSQL` has been merked as `private` | |||
|
|||
The `getSelectConditionStatementColumnSQL` has been removed (marked as `private`) from the API. |
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.
Doesn't need to be documented, IMO. Persisters are internal API
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.
We discussed here about this. If it is not required i can remove this.
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.
Fair enough, though the persisters really changed radically (even their namespace) :|
d9f74fb
to
fb5cd92
Compare
Done. Does I have to test something? |
Nope, looks good :-) |
Mark getSelectConditionStatementColumnSQL method as private
The
Doctrine/\ORM\Persisters\BasicEntityPersister::getSelectConditionStatementColumnSQL
method has been marked asprivate
.The current
protected
mark is a bit unuseful since everything is already handled into the public methodgetSelectConditionStatementSQL
.