-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
[Repository] Removed unused createFilterPaginator
methods
#6174
[Repository] Removed unused createFilterPaginator
methods
#6174
Conversation
Zales0123
commented
Sep 21, 2016
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Related tickets | |
License | MIT |
* @param array $sorting | ||
* | ||
* @return PagerfantaInterface | ||
*/ | ||
public function createCheckoutsPaginator(array $criteria = null, array $sorting = null); |
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.
How about other ...Paginator
methods? Are they used anywhere? If not we should remove them also.
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function findForDetailsPage($id) |
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.
Such methods are also remains from WebBundle, please look through the codebase to catch as much unused repository methods as possible ;)
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.
This method also :)
@@ -39,15 +39,6 @@ public function createByTaxonPaginator(TaxonInterface $taxon, array $criteria = | |||
* @return PagerfantaInterface | |||
*/ | |||
public function createByTaxonAndChannelPaginator(TaxonInterface $taxon, ChannelInterface $channel); |
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.
Should be removed also :)
3c7e69c
to
cb16792
Compare
@Zales0123 rebase please :) |
47321b5
to
3b271c6
Compare
3b271c6
to
8da517b
Compare
👍 |
Hi! What methods should be used instead of |