-
Notifications
You must be signed in to change notification settings - Fork 937
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
Do not use the silence operator @
#331
Comments
Feel free to submit a PR mr. @Tobion |
hkulekci
added a commit
to hkulekci/swagger-php
that referenced
this issue
Sep 5, 2016
@Tobion @bravo-kernel I sent a pr for this issue. |
bfanger
added a commit
that referenced
this issue
Dec 16, 2016
- Dynamic Definitions / partial support #301 - By default only scan *.php files #350 - Removed silence operator @, improves compatiblity custom errorhandlers #331 - Additional datetime classes & interfaces #338 - Fixed case of UNDEFINED constants namespaces, improves hhvm compatibility #319 - Misc improvements to the docs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are silencing errors instead of checking for existing indexes, e.g.
@$options['analyser']
.This is really bad practice and creates alot of error logs in our app.
Please replace those with
isset
checks or similar.The text was updated successfully, but these errors were encountered: