Skip to content

Commit e779765

Browse files
committed
minor #8328 Removed not needed use statements (yannickroger, javiereguiluz)
This PR was merged into the 3.3 branch. Discussion ---------- Removed not needed use statements The use statements were needed in the previous example but not in this one. Commits ------- beb3f7b Removed blank line and sorted imports dbbf78f Removed not needed use statements
2 parents f72237d + beb3f7b commit e779765

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

components/console/single_command_tool.rst

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,8 @@ Of course, you can still register a command as usual::
3939
<?php
4040
require __DIR__.'/vendor/autoload.php';
4141

42-
use Symfony\Component\Console\Application;
43-
use Symfony\Component\Console\Input\InputArgument;
44-
use Symfony\Component\Console\Input\InputInterface;
45-
use Symfony\Component\Console\Input\InputOption;
46-
use Symfony\Component\Console\Output\OutputInterface;
47-
4842
use Acme\Command\DefaultCommand;
43+
use Symfony\Component\Console\Application;
4944

5045
$application = new Application('echo', '1.0.0');
5146
$command = new DefaultCommand();

0 commit comments

Comments
 (0)