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 @@ -278,7 +278,7 @@ Each custom pool becomes a service where the service id is the name of the pool
278
278
using the camel case version of its name - e.g. ``custom_thing.cache `` can be
279
279
injected automatically by naming the argument ``$customThingCache `` and type-hinting it
280
280
with either :class: `Symfony\\ Contracts\\ Cache\\ CacheInterface ` or
281
- ``Psr\\ Cache\ \CacheItemPoolInterface ``::
281
+ ``Psr\Cache\CacheItemPoolInterface ``::
282
282
283
283
use Symfony\Contracts\Cache\CacheInterface;
284
284
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 %}
@@ -485,7 +485,7 @@ for this form class and :doc:`tag it </service_container/tags>` with ``form.type
485
485
The variables added in ``buildView() `` are available in the form type template
486
486
as any other regular Twig variable:
487
487
488
- .. code-block :: twig
488
+ .. code-block :: html+ twig
489
489
490
490
{# templates/form/custom_types.html.twig #}
491
491
{% 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