Skip to content

Commit d415a1e

Browse files
committed
minor #48243 Fix some native constant and function invocations (fancyweb)
This PR was merged into the 6.2 branch. Discussion ---------- Fix some native constant and function invocations | Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | no | New feature? | no | Deprecations? | - | Tickets | - | License | MIT | Doc PR | - Commits ------- 17e096dcaf Fix some native constant and function invocations
2 parents 1aab387 + 5e86659 commit d415a1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Helper/QuestionHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ private function getHiddenResponse(OutputInterface $output, $inputStream, bool $
430430

431431
$value = fgets($inputStream, 4096);
432432

433-
if (4095 === strlen($value)) {
433+
if (4095 === \strlen($value)) {
434434
$errOutput = $output instanceof ConsoleOutputInterface ? $output->getErrorOutput() : $output;
435435
$errOutput->warning('The value was possibly truncated by your shell or terminal emulator');
436436
}

0 commit comments

Comments
 (0)