-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
[2.2] [FrameworkBundle][Translation] Added logging capability to translator #5537
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
Closed
meandmymonkey
wants to merge
22
commits into
symfony:master
from
meandmymonkey:translator-log-catalog-misses
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
5a53821
[OptionsResolver] fix removing normalizers
Tobion e2a50ef
[OptionsResolver] fix normalizer without corresponding option
Tobion 5f62bad
[Translation] added validateCatalogueForId() to allow for handling of…
31c42bc
[FrameworkBundle] added logging capabilities to translator
efb36bb
[FrameworkBundle][Translation] renamed catalog select method
5e21921
[FrameworkBundle][Translation] clarified method naming
d1b5093
Try to make sure cookies get deleted from the TokenProvider when no l…
b930066
Add Route::hasOption() and Route::hasRequirement() methods.
Crell 64b6980
merged branch Crell/route-requirements (PR #6098)
fabpot acec659
merged branch Tobion/patch-1 (PR #5104)
fabpot efe42cb
[Validator] Refactored the GraphWalker into an implementation of the …
webmozart 1f752e8
[DoctrineBridge] Adapted UniqueValidator to latest changes in the Val…
webmozart 1858b96
[Form] Adapted FormValidator to latest changes in the Validator
webmozart c8ebc1e
merged branch sli-systems/dc-1 (PR #6080)
fabpot d5ff238
merged branch TerjeBr/persistent-token-provider (PR #6055)
fabpot ee90986
merged branch bschussek/drupal-validator (PR #6096)
fabpot 6966c7d
[Translation] added validateCatalogueForId() to allow for handling of…
a1716d0
[FrameworkBundle] added logging capabilities to translator
34309fd
[FrameworkBundle][Translation] renamed catalog select method
3716574
[FrameworkBundle][Translation] clarified method naming
0cf8d7d
Merge branch 'translator-log-catalog-misses' of github.com:meandmymon…
cc5e197
fixed merge conflict introduced by last commit
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
[FrameworkBundle][Translation] renamed catalog select method
- Loading branch information
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
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 still find the naming weird. This method does not find the catalogue as you are already finding it before that to pass it as an argument
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.
What would you suggest?
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.
And btw, it does return a catalogue to allow for further potential customization.
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.
yes, it returns a catalogue. but it does not find it. All places using
find
as naming are actually finding the object. Here, you are eventually filtering the catalogue, but finding it is done before calling the methodThere 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.
Ok, filterCatalogueForId is fine.