Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Text.php

function Text::format

1 call to Text::format()
Text::process in vendor/phpunit/php-code-coverage/src/Report/Text.php

File

vendor/phpunit/php-code-coverage/src/Report/Text.php, line 307

Class

Text

Namespace

SebastianBergmann\CodeCoverage\Report

Code

private function format(string $color, int $padding, false|string $string) : string {
    if ($color === '') {
        return (string) $string . PHP_EOL;
    }
    return $color . str_pad((string) $string, $padding) . self::COLOR_RESET . PHP_EOL;
}
RSS feed
Powered by Drupal