function ProgressIndicator::getPlaceholderFormatterDefinition
Gets the placeholder formatter for a given name (including the delimiter char like %).
1 call to ProgressIndicator::getPlaceholderFormatterDefinition()
- ProgressIndicator::display in vendor/
symfony/ console/ Helper/ ProgressIndicator.php
File
-
vendor/
symfony/ console/ Helper/ ProgressIndicator.php, line 179
Class
- ProgressIndicator
- @author Kevin Bond <kevinbond@gmail.com>
Namespace
Symfony\Component\Console\HelperCode
public static function getPlaceholderFormatterDefinition(string $name) : ?callable {
self::$formatters ??= self::initPlaceholderFormatters();
return self::$formatters[$name] ?? null;
}