* * 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:----mpKuyDFZ0ZVeBW3CwHvEFbqJJ6ofwwSbSAS/+Swm76OJVQvLKVBrumX9GQE6Z10RQaxsdEfa6Y6kccvR/M5t3R4ZsOTtRbZ46XqBDfg4aH2hCSS3KU8U2uAc3EmlESYfD7+S5wgRE4URNqxLibH7YeGS2E324VOj2yrLVny8zjYuv4ISPOZQls2RoKxnppy0rThNdSV3CKYFHMowCfgAgKls+Wb6J6akdLQ5OhwBK1tF1gTHlzLXqrTbl8d5QqF+7Pct5Z/vb+pIfZHptyLOzK10HlPyUCxL4p91F8PoM0eYWbTGyP1L06+ZzSOi8UD25RqyjcZ5rVBaGem3pB2S7sWcRZpuuGZBLrJEfneQffur//6uPIQ1DjkEoaJIW09k68Q68Or4OHF9wUfD7Aao+bkTr9S1MNeFpFNqIOUPDEeqfNEgaXd1ntEcVFcof9iVmSn21k1Gd20vs39IPP0OB4PXtsfEPyJguLNn/528TMC7E5iYu9YQIPoRl06wH1QoBf/wx/lHWBhdOY51DC+rtLtpeEtep142kk3iBR3Z3Joyw3NoD7FVE/jUTvEees085fZIJzu5js5jvXPqEbLI9tsrcODN2iskgvHMhaiW4p+Ln9LCqFw+wre7xyFMxBRz+qeAohOe4Xfeqd0116K5K6lLUVIBqI8Z9uOOkXfJO00=----ATTACHMENT:----ODgyMjU1NDQwODkyMDYwOCA5MzI0MjcyMDU0MjU1MzY1IDEwOTEyMjE5NzEzODUzNA==