Skip to content

Commit 74e2a7f

Browse files
committed
Rewords
1 parent 840402c commit 74e2a7f

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

performance.rst

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,14 @@ such as Symfony projects, should use at least these values:
189189
Optimize Composer Autoloader
190190
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
191191

192-
The class loader used while developing the application is optimized to find
193-
new and changed classes. In production servers, PHP files should never change,
192+
The class loader used while developing the application is optimized to find new
193+
and changed classes. In production servers, PHP files should never change,
194194
unless a new application version is deployed. That's why you can optimize
195-
Composer's autoloader to scan the entire application once and build a "class map",
196-
which is a big array of the locations of all the classes and it's stored
197-
in ``vendor/composer/autoload_classmap.php``.
195+
Composer's autoloader to scan the entire application once and build an
196+
optimized "class map", which is a big array of the locations of all the classes
197+
and it's stored in ``vendor/composer/autoload_classmap.php``.
198198

199-
Execute this command to generate the class map (and make it part of your
199+
Execute this command to generate the new class map (and make it part of your
200200
deployment process too):
201201

202202
.. code-block:: terminal
@@ -209,8 +209,6 @@ deployment process too):
209209
used in your application and prevents Composer from scanning the file system for
210210
classes that are not found in the class map. (see: `Composer's autoloader optimization`_).
211211

212-
You can also use the ``--classmap-authoritative`` option with the ``composer install`` command.
213-
214212
.. _profiling-applications:
215213

216214
Profiling Symfony Applications

0 commit comments

Comments
 (0)