public function LoggingFormatter::formatUpdateReference in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Compiler/LoggingFormatter.php \Symfony\Component\DependencyInjection\Compiler\LoggingFormatter::formatUpdateReference()
File
- vendor/
symfony/ dependency-injection/ Compiler/ LoggingFormatter.php, line 31
Class
- LoggingFormatter
- Used to format logging messages during the compilation.
Namespace
Symfony\Component\DependencyInjection\CompilerCode
public function formatUpdateReference(CompilerPassInterface $pass, $serviceId, $oldDestId, $newDestId) {
return $this
->format($pass, sprintf('Changed reference of service "%s" previously pointing to "%s" to "%s".', $serviceId, $oldDestId, $newDestId));
}