From df700dae5d7be9f9755e65a82ee9207a86285c5e 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 445cee29323..eda67260924 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