You are here

public function LoggingFormatter::formatResolveInheritance in Zircon Profile 8

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

File

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

Class

LoggingFormatter
Used to format logging messages during the compilation.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function formatResolveInheritance(CompilerPassInterface $pass, $childId, $parentId) {
  return $this
    ->format($pass, sprintf('Resolving inheritance for "%s" (parent: %s).', $childId, $parentId));
}