You are here

public function LoggingFormatter::formatResolveInheritance in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/LoggingFormatter.php \Symfony\Component\DependencyInjection\Compiler\LoggingFormatter::formatResolveInheritance()

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/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));
}