Skip to content

Commit 7efe04d

Browse files
committed
minor symfony#11057 Typo : 'use' is expecting ',' or ';' (Rom1deTroyes)
This PR was submitted for the 4.2 branch but it was merged into the 3.4 branch instead (closes symfony#11057). Discussion ---------- Typo : 'use' is expecting ',' or ';' `use` is expecting ',' or ';' : here, `;` seems a good choice :-) Commits ------- a99bd68 Typo : 'use' is expecting ',' or ';'
2 parents a58731c + a99bd68 commit 7efe04d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controller.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ any other "work" you can think of.
260260
If you need a service in a controller, just type-hint an argument with its class
261261
(or interface) name. Symfony will automatically pass you the service you need::
262262

263-
use Psr\Log\LoggerInterface
263+
use Psr\Log\LoggerInterface;
264264
// ...
265265

266266
/**

0 commit comments

Comments
 (0)