forked from j-guyon/CommandSchedulerBundle
-
Notifications
You must be signed in to change notification settings - Fork 27
Added localization for translated cron-string #168
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
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b9326ec
Enhance getCronExpressionTranslated with locale and time format
knallcharge e94c097
Update cron expression translation with locale
knallcharge 39c500a
Update cron-translator dependency version
knallcharge d6e3947
Update getCronExpressionTranslated method signature
knallcharge 743dad2
Merge branch 'main' into master
Chris53897 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
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.
🧩 Analysis chain
🏁 Script executed:
Repository: Dukecity/CommandSchedulerBundle
Length of output: 475
🌐 Web query:
lorisleiva/cron-translator version 0.5.0 translate method signature API💡 Result:
I couldn’t find any
lorisleiva/cron-translatorv0.5.0 release/tag on Packagist or in the GitHub releases list (latest shown there is v0.4.6, released June 25, 2025). [1]For the currently documented API,
CronTranslator::translateis a static method that takes:'fr')true/false) [2]Sources: [1] [2]
🏁 Script executed:
Repository: Dukecity/CommandSchedulerBundle
Length of output: 994
Dependency version constraint
^0.5.0forlorisleiva/cron-translatordoes not exist and will cause composer to fail.The interface signature change itself is correct and consistent with
BaseScheduledCommand, which properly forwards the new optional parameters toCronTranslator::translate(). The parameter order (expression, locale, use24HourTime) matches the library's API.However,
composer.jsonspecifies"lorisleiva/cron-translator": "^0.5.0", but v0.5.0 has never been released. The latest available version is v0.4.6 (June 25, 2025). The constraint^0.5.0must be corrected to^0.4.6or higher if a newer version becomes available.No other implementations of
ScheduledCommandInterfaceexist in the codebase that require updating — onlyBaseScheduledCommandimplements it, and its signature already matches.🤖 Prompt for AI Agents