public function LoggingFormatter::formatResolveInheritance

File

drupal/core/vendor/symfony/dependency-injection/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));
}