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
The following reproduction code will show the issue:
use Jawira\CaseConverter\Convert; require __DIR__ . "/vendor/autoload.php"; $original = "__toString"; $text = new Convert($original); $expected = "To string"; $sentence = $text->toSentence(); echo $expected === $sentence ? "$expected === $sentence" . PHP_EOL : "Expected $sentence to be $expected"; echo PHP_EOL;
Expected Tostring to be To string
Is it expected?
FYI here is how one NPM package handles it (as expected in my opinion)
The text was updated successfully, but these errors were encountered:
jawira
No branches or pull requests
The following reproduction code will show the issue:
Is it expected?
FYI here is how one NPM package handles it (as expected in my opinion)
The text was updated successfully, but these errors were encountered: