We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fdb514 commit 7e7b8a7Copy full SHA for 7e7b8a7
src/JsonSchema/Constraints/StringConstraint.php
@@ -55,6 +55,7 @@ private function strlen($string)
55
return mb_strlen($string, mb_detect_encoding($string));
56
}
57
58
- return strlen($string); // @codeCoverageIgnore because mbstring is present on all test platforms
+ // obstring is present on all test platforms, so strlen() can be ignored for coverage
59
+ return strlen($string); // @codeCoverageIgnore
60
61
0 commit comments