* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection\Compiler; @trigger_error('The '.__NAMESPACE__.'\LoggingFormatter class is deprecated since Symfony 3.3 and will be removed in 4.0. Use the ContainerBuilder::log() method instead.', E_USER_DEPRECATED); /** * Used to format logging messages during the compilation. * * @author Johannes M. Schmitt * * @deprecated since version 3.3, to be removed in 4.0. Use the ContainerBuilder::log() method instead. */ class LoggingFormatter { public function formatRemoveService(CompilerPassInterface $pass, $id, $reason) { return $this->format($pass, sprintf('Removed service "%s"; reason: %s.', $id, $reason)); } public function formatInlineService(CompilerPassInterface $pass, $id, $target) { return $this->format($pass, sprintf('Inlined service "%s" to "%s".', $id, $target)); } 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)); } public function formatResolveInheritance(CompilerPassInterface $pass, $childId, $parentId) { return $this->format($pass, sprintf('Resolving inheritance for "%s" (parent: %s).', $childId, $parentId)); } public function formatUnusedAutowiringPatterns(CompilerPassInterface $pass, $id, array $patterns) { return $this->format($pass, sprintf('Autowiring\'s patterns "%s" for service "%s" don\'t match any method.', implode('", "', $patterns), $id)); } public function format(CompilerPassInterface $pass, $message) { return sprintf('%s: %s', get_class($pass), $message); } } __halt_compiler();----SIGNATURE:----VpgNSzvI7gu5sgXBzDTcqjgRK/T6yojO7o9xJfr8xTJKhMWlG75GaEBnnz2sGi9kSU2HS26yuGxEbUsZNx6263UG5wEur66zijIIY0Q+aieCTFPPbTaDSaDgaY8KZ+yY/H7Q8yQ13oRBmiBXDnF7zx4SP5rGxAEAa6k37phGTMBUNMAp7UoIvVCxKDb/ThD5sAGGxRYKNseEujBsGpjlXM5/EHR02ARU8HD6T64589HSokx/pLsW37vYR3s6bfAUklmmHoDDCarBcyZTgewsKXtL75MTzctBUVoNZGmj+xat5tjF4K4L4jCKjo2cOx1DBzztwz6YhliC2dTD8YctQ8HP8lO1PVV8F/VgQjapV1/wE+VcF3CgGjj/UIMNkQKopSuKrgSfabTk8YkwSeEqDEIRKfwldJj+1eH1GQGxpXHXQfewRuC+ovEqv1YhQwk9ZC0vkcDrYbC8YYF1lpWKHepSwapTWCutmkS8TWoAKO79xzlB5RZU57OHhrHJDjtDoMgObqlw+xsyW98WfGwtnPXnWLvptf/wZ1It2XPGSnhYge1HKY1/8qBkdGgvUpqoWGezzq5FBjYQG6F+X5p++yo6lqEUSLMyANrF+5XwD5OqrJFxxsnFySY+WXBCSTt4xApvzxpoLutQNSXe7mRa9xEo/WJANtA/OGO9CTeBo+c=----ATTACHMENT:----NDAwNjM3MTA5MjE4NDMyNSA0Mzc5OTI2MDIzNzQ4MDk0IDQwNzI5MjE5MjQwNjIzNzI=