File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
components/console/helpers Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ The Console Helpers
15
15
debug_formatter
16
16
17
17
The Console component comes with some useful helpers. These helpers contain
18
- function to ease some common tasks.
18
+ functions to ease some common tasks.
19
19
20
20
.. include :: map.rst.inc
Original file line number Diff line number Diff line change @@ -193,14 +193,14 @@ such as Symfony projects, should use at least these values:
193
193
Optimize Composer Autoloader
194
194
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
195
195
196
- The class loader used while developing the application is optimized to find
197
- new and changed classes. In production servers, PHP files should never change,
196
+ The class loader used while developing the application is optimized to find new
197
+ and changed classes. In production servers, PHP files should never change,
198
198
unless a new application version is deployed. That's why you can optimize
199
- Composer's autoloader to scan the entire application once and build a "class map",
200
- which is a big array of the locations of all the classes and it's stored
201
- in ``vendor/composer/autoload_classmap.php ``.
199
+ Composer's autoloader to scan the entire application once and build an
200
+ optimized "class map", which is a big array of the locations of all the classes
201
+ and it's stored in ``vendor/composer/autoload_classmap.php ``.
202
202
203
- Execute this command to generate the class map (and make it part of your
203
+ Execute this command to generate the new class map (and make it part of your
204
204
deployment process too):
205
205
206
206
.. code-block :: terminal
You can’t perform that action at this time.
0 commit comments