From a4adb7bca55622508e9b38bf14bfbfd9357fb589 Mon Sep 17 00:00:00 2001 From: Romain Date: Tue, 26 Feb 2019 11:55:31 +0100 Subject: [PATCH] Typo : 'use' is expecting ',' or ';' `use` is expecting ',' or ';' : here, `;` seems a good choice :-) --- controller.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller.rst b/controller.rst index 480c3216967..8184f60e039 100644 --- a/controller.rst +++ b/controller.rst @@ -195,7 +195,7 @@ any other "work" you can think of. If you need a service in a controller, type-hint an argument with its class (or interface) name. Symfony will automatically pass you the service you need:: - use Psr\Log\LoggerInterface + use Psr\Log\LoggerInterface; // ... /**