/
opt
/
alt
/
php55
/
usr
/
share
/
pear
/
Symfony
/
Component
/
DependencyInjection
/
Compiler
/
/opt/alt/php55/usr/share/pear/Symfony/Component/DependencyInjection/Compiler
mkdir
upload
Name
Size
Mode
Actions
AnalyzeServiceReferencesPass.php
4512
0644
edit
dl
rm
CheckCircularReferencesPass.php
2417
0644
edit
dl
rm
CheckDefinitionValidityPass.php
3684
0644
edit
dl
rm
CheckExceptionOnInvalidReferenceBehaviorPass.php
2102
0644
edit
dl
rm
CheckReferenceValidityPass.php
5634
0644
edit
dl
rm
Compiler.php
2613
0644
edit
dl
rm
CompilerPassInterface.php
746
0644
edit
dl
rm
InlineServiceDefinitionsPass.php
4592
0644
edit
dl
rm
LoggingFormatter.php
1468
0644
edit
dl
rm
MergeExtensionConfigurationPass.php
1884
0644
edit
dl
rm
PassConfig.php
6040
0644
edit
dl
rm
RemoveAbstractDefinitionsPass.php
1063
0644
edit
dl
rm
RemovePrivateAliasesPass.php
1267
0644
edit
dl
rm
RemoveUnusedDefinitionsPass.php
2772
0644
edit
dl
rm
RepeatablePassInterface.php
691
0644
edit
dl
rm
RepeatedPass.php
2083
0644
edit
dl
rm
ReplaceAliasByActualDefinitionPass.php
4166
0644
edit
dl
rm
ResolveDefinitionTemplatesPass.php
5550
0644
edit
dl
rm
ResolveInvalidReferencesPass.php
3500
0644
edit
dl
rm
ResolveParameterPlaceHoldersPass.php
2158
0644
edit
dl
rm
ResolveReferencesToAliasesPass.php
2896
0644
edit
dl
rm
ServiceReferenceGraph.php
2857
0644
edit
dl
rm
ServiceReferenceGraphEdge.php
1517
0644
edit
dl
rm
ServiceReferenceGraphNode.php
2545
0644
edit
dl
rm
Edit:
/opt/alt/php55/usr/share/pear/Symfony/Component/DependencyInjection/Compiler/LoggingFormatter.php
(1468B)
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection\Compiler; /** * Used to format logging messages during the compilation. * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ 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 format(CompilerPassInterface $pass, $message) { return sprintf('%s: %s', get_class($pass), $message); } }
Save
cmd:
run