File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ Each custom pool becomes a service where the service id is the name of the pool
274
274
using the camel case version of its name - e.g. ``custom_thing.cache `` can be
275
275
injected automatically by naming the argument ``$customThingCache `` and type-hinting it
276
276
with either :class: `Symfony\\ Contracts\\ Cache\\ CacheInterface ` or
277
- ``Psr\\ Cache\ \CacheItemPoolInterface ``::
277
+ ``Psr\Cache\CacheItemPoolInterface ``::
278
278
279
279
use Symfony\Contracts\Cache\CacheInterface;
280
280
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Creating Cache Pools
27
27
28
28
Cache Pools are created through the **cache adapters **, which are classes that
29
29
implement both :class: `Symfony\\ Contracts\\ Cache\\ CacheInterface ` and
30
- ``Psr\\ Cache\ \CacheItemPoolInterface ``. This component provides several adapters
30
+ ``Psr\Cache\CacheItemPoolInterface ``. This component provides several adapters
31
31
ready to use in your applications.
32
32
33
33
.. toctree ::
Original file line number Diff line number Diff line change @@ -401,7 +401,7 @@ The last step is to create the actual Twig template that will render the type.
401
401
The template contents depend on which HTML, CSS and JavaScript frameworks and
402
402
libraries are used in your application:
403
403
404
- .. code-block :: twig
404
+ .. code-block :: html+ twig
405
405
406
406
{# templates/form/custom_types.html.twig #}
407
407
{% block postal_address_row %}
@@ -479,7 +479,7 @@ for this form class and :doc:`tag it </service_container/tags>` with ``form.type
479
479
The variables added in ``buildView() `` are available in the form type template
480
480
as any other regular Twig variable:
481
481
482
- .. code-block :: twig
482
+ .. code-block :: html+ twig
483
483
484
484
{# templates/form/custom_types.html.twig #}
485
485
{% block postal_address_row %}
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ commands to create the Symfony application:
35
35
36
36
The only difference between these two commands is the number of packages
37
37
installed. The ``--full `` option installs all the packages that you usually
38
- need to build web apps . Therefore, the installation size will be much bigger.
38
+ need to build web applications . Therefore, the installation size will be much bigger.
39
39
40
40
Both commands will create a new ``my-project/ `` directory, download some
41
41
dependencies into it and even generate the basic directories and files you'll
You can’t perform that action at this time.
0 commit comments