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 6b588e6 commit ccd2180Copy full SHA for ccd2180
tests/Issues/DowngradeHeredoc/Fixture/next_arg.php.inc
@@ -474,9 +474,9 @@ final class NextArg
474
$lineString = trim($lineString);
475
476
if (strncmp($lineString, '/**', strlen('/**')) === 0) {
477
- $lineString = substr($lineString, 3);
+ $lineString = (string) substr($lineString, 3);
478
} elseif (strncmp($lineString, '*', strlen('*')) === 0) {
479
- $lineString = substr($lineString, 1);
+ $lineString = (string) substr($lineString, 1);
480
}
481
482
return trim($lineString);
0 commit comments