You are here

public function LoggingFormatter::formatInlineService in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Compiler/LoggingFormatter.php \Symfony\Component\DependencyInjection\Compiler\LoggingFormatter::formatInlineService()

File

vendor/symfony/dependency-injection/Compiler/LoggingFormatter.php, line 26

Class

LoggingFormatter
Used to format logging messages during the compilation.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function formatInlineService(CompilerPassInterface $pass, $id, $target) {
  return $this
    ->format($pass, sprintf('Inlined service "%s" to "%s".', $id, $target));
}