@@ -35,7 +35,7 @@ class ContainerDebugCommand extends Command
3535 use BuildDebugContainerTrait;
3636
3737 protected static $ defaultName = 'debug:container ' ;
38- protected static $ defaultDescription = 'Displays current services for an application ' ;
38+ protected static $ defaultDescription = 'Display current services for an application ' ;
3939
4040 /**
4141 * {@inheritdoc}
@@ -45,18 +45,18 @@ protected function configure()
4545 $ this
4646 ->setDefinition ([
4747 new InputArgument ('name ' , InputArgument::OPTIONAL , 'A service name (foo) ' ),
48- new InputOption ('show-arguments ' , null , InputOption::VALUE_NONE , 'Used to show arguments in services ' ),
49- new InputOption ('show-hidden ' , null , InputOption::VALUE_NONE , 'Used to show hidden (internal) services ' ),
50- new InputOption ('tag ' , null , InputOption::VALUE_REQUIRED , 'Shows all services with a specific tag ' ),
51- new InputOption ('tags ' , null , InputOption::VALUE_NONE , 'Displays tagged services for an application ' ),
52- new InputOption ('parameter ' , null , InputOption::VALUE_REQUIRED , 'Displays a specific parameter for an application ' ),
53- new InputOption ('parameters ' , null , InputOption::VALUE_NONE , 'Displays parameters for an application ' ),
54- new InputOption ('types ' , null , InputOption::VALUE_NONE , 'Displays types (classes/interfaces) available in the container ' ),
55- new InputOption ('env-var ' , null , InputOption::VALUE_REQUIRED , 'Displays a specific environment variable used in the container ' ),
56- new InputOption ('env-vars ' , null , InputOption::VALUE_NONE , 'Displays environment variables used in the container ' ),
48+ new InputOption ('show-arguments ' , null , InputOption::VALUE_NONE , 'Show arguments in services ' ),
49+ new InputOption ('show-hidden ' , null , InputOption::VALUE_NONE , 'Show hidden (internal) services ' ),
50+ new InputOption ('tag ' , null , InputOption::VALUE_REQUIRED , 'Show all services with a specific tag ' ),
51+ new InputOption ('tags ' , null , InputOption::VALUE_NONE , 'Display tagged services for an application ' ),
52+ new InputOption ('parameter ' , null , InputOption::VALUE_REQUIRED , 'Display a specific parameter for an application ' ),
53+ new InputOption ('parameters ' , null , InputOption::VALUE_NONE , 'Display parameters for an application ' ),
54+ new InputOption ('types ' , null , InputOption::VALUE_NONE , 'Display types (classes/interfaces) available in the container ' ),
55+ new InputOption ('env-var ' , null , InputOption::VALUE_REQUIRED , 'Display a specific environment variable used in the container ' ),
56+ new InputOption ('env-vars ' , null , InputOption::VALUE_NONE , 'Display environment variables used in the container ' ),
5757 new InputOption ('format ' , null , InputOption::VALUE_REQUIRED , 'The output format (txt, xml, json, or md) ' , 'txt ' ),
5858 new InputOption ('raw ' , null , InputOption::VALUE_NONE , 'To output raw description ' ),
59- new InputOption ('deprecations ' , null , InputOption::VALUE_NONE , 'Displays deprecations generated when compiling and warming up the container ' ),
59+ new InputOption ('deprecations ' , null , InputOption::VALUE_NONE , 'Display deprecations generated when compiling and warming up the container ' ),
6060 ])
6161 ->setDescription (self ::$ defaultDescription )
6262 ->setHelp (<<<'EOF'
0 commit comments