Skip to content

Commit

Permalink
feature #34865 [FrameworkBundle][ContainerLintCommand] Style messages…
Browse files Browse the repository at this point in the history
… (fancyweb)

This PR was merged into the 5.1-dev branch.

Discussion
----------

[FrameworkBundle][ContainerLintCommand] Style messages

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | yes
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

It gives a better feedback.

Commits
-------

93aa5bc [FrameworkBundle][ContainerLintCommand] Style messages
  • Loading branch information
fabpot committed Jan 10, 2020
2 parents 20e8cb2 + 93aa5bc commit af3c205
Showing 1 changed file with 10 additions and 1 deletion.
Expand Up @@ -22,6 +22,7 @@
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\DependencyInjection\ParameterBag\EnvPlaceholderParameterBag;
use Symfony\Component\HttpKernel\Kernel;
Expand Down Expand Up @@ -64,7 +65,15 @@ protected function execute(InputInterface $input, OutputInterface $output): int

$container->setParameter('container.build_time', time());

$container->compile();
try {
$container->compile();
} catch (InvalidArgumentException $e) {
$errorIo->error($e->getMessage());

return 1;
}

$io->success('The container was lint successfully: all services are injected with values that are compatible with their type declarations.');

return 0;
}
Expand Down

0 comments on commit af3c205

Please sign in to comment.