From 1b6b768b5ba7961dec365c4d61c4d816abf38ca3 Mon Sep 17 00:00:00 2001 From: Jeffrey Cafferata Date: Sat, 4 Apr 2015 11:54:19 +0200 Subject: [PATCH] Update introduction.rst Little PHP-CS-Fixer --- components/console/introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/console/introduction.rst b/components/console/introduction.rst index 13fb3578fc8..bbd99f07390 100644 --- a/components/console/introduction.rst +++ b/components/console/introduction.rst @@ -85,7 +85,7 @@ an ``Application`` and adds commands to it:: use Symfony\Component\Console\Application; $application = new Application(); - $application->add(new GreetCommand); + $application->add(new GreetCommand()); $application->run(); Test the new console command by running the following