Skip to content

Commit 519be66

Browse files
committed
[Console] Remove doc block from recent value function
1 parent 0a762e2 commit 519be66

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/Symfony/Component/Console/Helper/QuestionHelper.php

+1-7
Original file line numberDiff line numberDiff line change
@@ -365,17 +365,11 @@ private function autocomplete(OutputInterface $output, Question $question, $inpu
365365
return $fullChoice;
366366
}
367367

368-
/**
369-
* Determine the most recent value the user entered.
370-
*
371-
* @param $entered
372-
*
373-
* @return string
374-
*/
375368
private function mostRecentlyEnteredValue($entered)
376369
{
377370
$tempEntered = $entered;
378371

372+
// Determine the most recent value that the user entered
379373
if (false !== strpos($entered, ',')) {
380374
$choices = explode(',', $entered);
381375
$lastChoice = trim($choices[\count($choices) - 1]);

0 commit comments

Comments
 (0)