Skip to content

Commit 5c40010

Browse files
committed
Merge branch '4.4' into 5.4
* 4.4: Update ci.yaml Updated SymfonyCloud link Changing `monolog.logger` to `logger` Remove obsolete warning
2 parents 167259d + b70d7f4 commit 5c40010

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
branches-ignore:
99
- 'github-comments'
1010

11+
permissions:
12+
contents: read
13+
1114
jobs:
1215
symfony-docs-builder-build:
1316
name: Build (symfony-tools/docs-builder)

components/config/resources.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,6 @@
44
Loading Resources
55
=================
66

7-
.. caution::
8-
9-
The ``IniFileLoader`` parses the file contents using the
10-
:phpfunction:`parse_ini_file` function. Therefore, you can only set
11-
parameters to string values. To set parameters to other data types
12-
(e.g. boolean, integer, etc), the other loaders are recommended.
13-
147
Loaders populate the application's configuration from different sources
158
like YAML files. The Config component defines the interface for such
169
loaders. The :doc:`Dependency Injection </components/dependency_injection>`

configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1149,4 +1149,4 @@ And all the other topics related to configuration:
11491149
.. _`Learn the XML syntax`: https://en.wikipedia.org/wiki/XML
11501150
.. _`environment variables`: https://en.wikipedia.org/wiki/Environment_variable
11511151
.. _`symbolic links`: https://en.wikipedia.org/wiki/Symbolic_link
1152-
.. _`utilities to manage env vars`: https://symfony.com/doc/master/cloud/cookbooks/env.html
1152+
.. _`utilities to manage env vars`: https://symfony.com/doc/current/cloud/env.html

service_container.rst

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,21 @@ What other services are available? Find out by running:
5858
5959
# this is just a *small* sample of the output...
6060
61-
Describes a logger instance.
62-
Psr\Log\LoggerInterface (monolog.logger)
61+
Autowirable Types
62+
=================
6363
64-
Request stack that controls the lifecycle of requests.
65-
Symfony\Component\HttpFoundation\RequestStack (request_stack)
64+
The following classes & interfaces can be used as type-hints when autowiring:
6665
67-
RouterInterface is the interface that all Router classes must implement.
68-
Symfony\Component\Routing\RouterInterface (router.default)
66+
Describes a logger instance.
67+
Psr\Log\LoggerInterface (logger)
6968
70-
[...]
69+
Request stack that controls the lifecycle of requests.
70+
Symfony\Component\HttpFoundation\RequestStack (request_stack)
71+
72+
RouterInterface is the interface that all Router classes must implement.
73+
Symfony\Component\Routing\RouterInterface (router.default)
74+
75+
[...]
7176
7277
When you use these type-hints in your controller methods or inside your
7378
:ref:`own services <service-container-creating-service>`, Symfony will automatically

0 commit comments

Comments
 (0)