Yaffs site version 1.1
[yaffs-website] / vendor / drupal / console-core / src / Command / HelpCommand.php
index a13fef660c284e4d455a8a08a4d06b19e6f0430c..c497341baab853cdbd59958f29e50609385b9c9e 100644 (file)
@@ -90,12 +90,12 @@ class HelpCommand extends Command
     private function createDefinition()
     {
         return new InputDefinition(
-            array(
+            [
             new InputArgument('command_name', InputArgument::OPTIONAL, $this->trans('commands.help.arguments.command_name'), 'help'),
             new InputOption('xml', null, InputOption::VALUE_NONE, $this->trans('commands.help.options.xml')),
             new InputOption('raw', null, InputOption::VALUE_NONE, $this->trans('commands.help.options.raw')),
             new InputOption('format', null, InputOption::VALUE_REQUIRED, $this->trans('commands.help.options.format'), 'txt'),
-            )
+            ]
         );
     }
 }