From 8c388a6a4de45a539cddbf8d8c9b73c40d879866 Mon Sep 17 00:00:00 2001 From: Thorsten Frommen Date: Thu, 9 Mar 2017 11:14:27 +0100 Subject: [PATCH] Fix typo --- doc/articles/autoloader-optimization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/articles/autoloader-optimization.md b/doc/articles/autoloader-optimization.md index 57182a5eb..0a8dab406 100644 --- a/doc/articles/autoloader-optimization.md +++ b/doc/articles/autoloader-optimization.md @@ -74,7 +74,7 @@ filesystem according to PSR-4 rules. ### Trade-offs -This option makes the autoloader always returns very quickly. On the flipside it +This option makes the autoloader always return very quickly. On the flipside it also means that in case a class is generated at runtime for some reason, it will not be allowed to be autoloaded. If your project or any of your dependencies does that then you might experience "class not found" issues in production. Enable this with care.