-
Notifications
You must be signed in to change notification settings - Fork 398
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
Static Code Analysis with Php Inspections fixes #1377
base: master
Are you sure you want to change the base?
Commits on May 29, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 6cced7b - Browse repository at this point
Copy the full SHA 6cced7bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 95894a5 - Browse repository at this point
Copy the full SHA 95894a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for bb2fc59 - Browse repository at this point
Copy the full SHA bb2fc59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1adce5c - Browse repository at this point
Copy the full SHA 1adce5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1f3bcea - Browse repository at this point
Copy the full SHA 1f3bceaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c17985 - Browse repository at this point
Copy the full SHA 4c17985View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a875f0 - Browse repository at this point
Copy the full SHA 9a875f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12bdca8 - Browse repository at this point
Copy the full SHA 12bdca8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8047e71 - Browse repository at this point
Copy the full SHA 8047e71View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4da28e1 - Browse repository at this point
Copy the full SHA 4da28e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f233ea - Browse repository at this point
Copy the full SHA 2f233eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for c8fc332 - Browse repository at this point
Copy the full SHA c8fc332View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04808a5 - Browse repository at this point
Copy the full SHA 04808a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12c762e - Browse repository at this point
Copy the full SHA 12c762eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e07ff1 - Browse repository at this point
Copy the full SHA 5e07ff1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2cc5a70 - Browse repository at this point
Copy the full SHA 2cc5a70View commit details -
Configuration menu - View commit details
-
Copy full SHA for 873400c - Browse repository at this point
Copy the full SHA 873400cView commit details -
Configuration menu - View commit details
-
Copy full SHA for ecb52d5 - Browse repository at this point
Copy the full SHA ecb52d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91f703a - Browse repository at this point
Copy the full SHA 91f703aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 54f56c0 - Browse repository at this point
Copy the full SHA 54f56c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for d584ab9 - Browse repository at this point
Copy the full SHA d584ab9View commit details -
Configuration menu - View commit details
-
Copy full SHA for bd2ebd6 - Browse repository at this point
Copy the full SHA bd2ebd6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3887227 - Browse repository at this point
Copy the full SHA 3887227View commit details -
Configuration menu - View commit details
-
Copy full SHA for 945b6ac - Browse repository at this point
Copy the full SHA 945b6acView commit details -
Reports array_push(...) calls behaving as '$array []= ...'. ' []= ' w…
…orks faster than invoking functions in PHP.
Configuration menu - View commit details
-
Copy full SHA for dac7c9a - Browse repository at this point
Copy the full SHA dac7c9aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f67f07 - Browse repository at this point
Copy the full SHA 9f67f07View commit details -
Configuration menu - View commit details
-
Copy full SHA for 567f0bb - Browse repository at this point
Copy the full SHA 567f0bbView commit details -
Reported cases can be refactored by using case-sensitive functions st…
…rstr(...)/strpos() for better performance because matched patterns does not contain any characters.
Configuration menu - View commit details
-
Copy full SHA for 6635327 - Browse repository at this point
Copy the full SHA 6635327View commit details -
A 'substr()' call can behave as array access, but hiding some error-h…
…andling logic behind as well. Using array access is a preferred way, because you have to implicitly write (read as document) errors handling code.
Configuration menu - View commit details
-
Copy full SHA for aff77e7 - Browse repository at this point
Copy the full SHA aff77e7View commit details -
Some of call_user_func()/call_user_func_array() might have semantic o…
…f variable function call. Using variable function instead is a micro-optimization.
Configuration menu - View commit details
-
Copy full SHA for 362caaa - Browse repository at this point
Copy the full SHA 362caaaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0243b2a - Browse repository at this point
Copy the full SHA 0243b2aView commit details -
A number of parameters, their names or types (if any) in PHPDoc comme…
…nt do not match the ones in respective function or method declaration.
Configuration menu - View commit details
-
Copy full SHA for 68344f3 - Browse repository at this point
Copy the full SHA 68344f3View commit details -
Analyzes uniqid calls and reports if both parameters are not provided…
…. Prefix usage aids in identifying the source of the ID within the code and the more_entropy parameter improves randomness.
Configuration menu - View commit details
-
Copy full SHA for c66836e - Browse repository at this point
Copy the full SHA c66836eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e93c43 - Browse repository at this point
Copy the full SHA 9e93c43View commit details -
Configuration menu - View commit details
-
Copy full SHA for a734ea5 - Browse repository at this point
Copy the full SHA a734ea5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 41a683b - Browse repository at this point
Copy the full SHA 41a683bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 108c66a - Browse repository at this point
Copy the full SHA 108c66aView commit details -
Reports 'is_null(...)' usage, a feature introduced in PHP4. All 'is_n…
…ull(...)' calls can be safely replaced with 'null === ...' constructs (or 'null !== ...' if the original construct was negated).
Configuration menu - View commit details
-
Copy full SHA for 0af090a - Browse repository at this point
Copy the full SHA 0af090aView commit details -
Analyzes str_replace(...) calls and reports when the function has bee…
…n applied to a variable sequentially.
Configuration menu - View commit details
-
Copy full SHA for 636e141 - Browse repository at this point
Copy the full SHA 636e141View commit details -
Configuration menu - View commit details
-
Copy full SHA for aa09548 - Browse repository at this point
Copy the full SHA aa09548View commit details -
Configuration menu - View commit details
-
Copy full SHA for c4b064a - Browse repository at this point
Copy the full SHA c4b064aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 71c4a22 - Browse repository at this point
Copy the full SHA 71c4a22View commit details
Commits on May 30, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 7394075 - Browse repository at this point
Copy the full SHA 7394075View commit details -
Configuration menu - View commit details
-
Copy full SHA for dc24753 - Browse repository at this point
Copy the full SHA dc24753View commit details -
Configuration menu - View commit details
-
Copy full SHA for b6fac96 - Browse repository at this point
Copy the full SHA b6fac96View commit details