Skip to content

Commit

Permalink
Merge pull request #947 from you-ser/1.0
Browse files Browse the repository at this point in the history
Typo at log message
  • Loading branch information
cedricziel authored Jun 20, 2017
2 parents 6e43896 + a045553 commit 5c9c7e8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DependencyInjection/Compiler/FiltersCompilerPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function process(ContainerBuilder $container)

foreach ($tags as $id => $tag) {
$manager->addMethodCall('addLoader', array($tag[0]['loader'], new Reference($id)));
$this->log($container, 'Registered imagine-bimdle filter loader: %s', array($id));
$this->log($container, 'Registered imagine-bundle filter loader: %s', array($id));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion DependencyInjection/Compiler/LoadersCompilerPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function process(ContainerBuilder $container)

foreach ($tags as $id => $tag) {
$manager->addMethodCall('addLoader', array($tag[0]['loader'], new Reference($id)));
$this->log($container, 'Registered imagine-bimdle binary loader: %s', array($id));
$this->log($container, 'Registered imagine-bundle binary loader: %s', array($id));
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function process(ContainerBuilder $container)

foreach ($tags as $id => $tag) {
$manager->addMethodCall('addPostProcessor', array($tag[0]['post_processor'], new Reference($id)));
$this->log($container, 'Registered imagine-bimdle filter post-processor: %s', array($id));
$this->log($container, 'Registered imagine-bundle filter post-processor: %s', array($id));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion DependencyInjection/Compiler/ResolversCompilerPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function process(ContainerBuilder $container)

foreach ($tags as $id => $tag) {
$manager->addMethodCall('addResolver', array($tag[0]['resolver'], new Reference($id)));
$this->log($container, 'Registered imagine-bimdle cache resolver: %s', array($id));
$this->log($container, 'Registered imagine-bundle cache resolver: %s', array($id));
}
}
}
Expand Down

0 comments on commit 5c9c7e8

Please sign in to comment.