From dbbf78f226c8356e9106ca22163e493d7543f92e Mon Sep 17 00:00:00 2001 From: Yannick ROGER Date: Fri, 1 Sep 2017 14:30:23 +0200 Subject: [PATCH 1/2] Removed not needed use statements --- components/console/single_command_tool.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/console/single_command_tool.rst b/components/console/single_command_tool.rst index 8b0396ba9b7..559acc9c50f 100644 --- a/components/console/single_command_tool.rst +++ b/components/console/single_command_tool.rst @@ -40,10 +40,6 @@ Of course, you can still register a command as usual:: require __DIR__.'/vendor/autoload.php'; use Symfony\Component\Console\Application; - use Symfony\Component\Console\Input\InputArgument; - use Symfony\Component\Console\Input\InputInterface; - use Symfony\Component\Console\Input\InputOption; - use Symfony\Component\Console\Output\OutputInterface; use Acme\Command\DefaultCommand; From beb3f7b0c14fbd44d3fb6b6885c932ed5e9be84c Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Fri, 1 Sep 2017 17:32:17 +0200 Subject: [PATCH 2/2] Removed blank line and sorted imports --- components/console/single_command_tool.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/console/single_command_tool.rst b/components/console/single_command_tool.rst index 559acc9c50f..d9661eb5b9a 100644 --- a/components/console/single_command_tool.rst +++ b/components/console/single_command_tool.rst @@ -39,9 +39,8 @@ Of course, you can still register a command as usual::