Skip to content
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

Avoid falsy comparison #251

Merged

Conversation

nbayramberdiyev
Copy link
Contributor

This PR fixes the comparison of the return value of strpos function.

If the needle string we are searching for is at the beginning of the haystack string, it will return 0 which is a valid offset and is falsy.

If you want to see a failing test, change this line like so:

- $response = $response->withStatus(404, "Not Found\n");
+ $response = $response->withStatus(404, "\nNot Found");

@coveralls
Copy link

Coverage Status

Coverage remained the same at 99.621% when pulling e65ba7a on nbayramberdiyev:fix/strict-equivalence-operator into 4647c2a on slimphp:master.

@l0gicgate l0gicgate added this to the 1.6 milestone Feb 15, 2022
@l0gicgate l0gicgate merged commit ec3d622 into slimphp:master Feb 15, 2022
@nbayramberdiyev nbayramberdiyev deleted the fix/strict-equivalence-operator branch February 15, 2022 17:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants