str_repeat

Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Repeat a string
<?php str_repeat(string $string, int $times): string
<?php         $lineInfo = ":{$issue->line}:$column";



        $alignSpacer = str_repeat(' ', 6);

        $spacer = str_repeat('-', $column);



        $suggestions = $this->formatIssueSuggestionsForDisplay(
<?php         $lineInfo = ":{$issue->line}:$column";



        $alignSpacer = str_repeat(' ', 6);

        $spacer = str_repeat('-', $column);



        $suggestions = $this->formatIssueSuggestionsForDisplay(

            $issue,
<?php         $column = $this->getIssueColumn($issue, $relativePath);

        $this->lastColumn[$issue->file][$issue->line][$issue->misspelling->word] = $column;



        $spacer = str_repeat('-', $column);



        $suggestions = $this->formatIssueSuggestionsForDisplay(

            $issue,
<?php     $splFileInfo = new SplFileInfo(__FILE__, '', '');



    $line = (fn (): int => $this->getErrorLine($splFileInfo, str_repeat('a', 100)))->call($checker);



    expect($line)->toBe(0);

});