We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When need compare two Stringable variables with exactly method. Then false is returned
<?php $first = \Str::of('name'); $second = \Str::of('name'); $first->exactly($second); // => false // true is expected but false is returned
The text was updated successfully, but these errors were encountered:
link this issue with this PR-41846
Sorry, something went wrong.
There is no bug here. You can only pass a string to this method.
I see what you mean now but this is a feature request. Let's see how your pr goes.
No branches or pull requests
Description:
When need compare two Stringable variables with exactly method. Then false is returned
Steps To Reproduce:
The text was updated successfully, but these errors were encountered: