-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Promote warnings to exceptions in the standard lib #4937
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
Closed
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
441b326
Promote warning to exception in log() function
kocsismate ee3b345
Promote warning to exception in ini_get_all() function
kocsismate e5a8bae
Promote warning to exception in parse_ini_file() function
kocsismate c30e234
Promote warnings to exceptions in dl() function
kocsismate 9b4cf61
Promote warnings to exceptions in password_*() functions
kocsismate 7adf0ce
Promote warning to exception in get_browser() function
kocsismate b550ea3
Promote warning to exception in dns_check_record() function
kocsismate 716c677
Promote warning to exception in convert_uudecode() function
kocsismate d2d9f6f
Promote warnings to exceptions in settype() function
kocsismate 2895a86
Promote warrnings to exceptions in chgrp() function
kocsismate 174cb29
Promote warning to exception in constant() function
kocsismate 1833afc
Promote warning to exception in file_get_contents() function
kocsismate b87ecf3
Promote warnings to exceptions in proc_open() function
kocsismate b610f2e
Capitalize the initial letter of the error message of htmlspecialchar…
kocsismate b2b219c
Promote warning to exception in the levenshtein() function
kocsismate 474bbc6
Promote warnings to exceptions in some URL and file related functions
kocsismate bc6bb44
Promote warnings to exceptions in string search related functions
kocsismate 49b87c0
Promote warnings to exceptions in *scanf() functions
kocsismate 5025c88
Promote warning to exception in the convert_uudecode() function
kocsismate 023f629
Promote warnings to exceptions in register_shutdown_handler() function
kocsismate ddd8362
Promote warnings to exceptions in register_tick_function() function
kocsismate 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
Binary file not shown.
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
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
Oops, something went wrong.
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.
A potential problem here is that this warnings is triggered during shutdown, so there is actually no way to catch the exception. Maybe that's okay though, I'm not sure.