Skip to content

Commit 0b8d0d5

Browse files
committed
Merge branch '4.0' into 4.1
* 4.0: Fix a "duplicated reference" issue server_version should always be a string Document missing property_info node in framework configuration Remove typo in example constructor make the care team list actually in alphabetic order Add missing colon to reserved chars
2 parents 1eb9a9d + 0e22aff commit 0b8d0d5

File tree

5 files changed

+24
-10
lines changed

5 files changed

+24
-10
lines changed

components/cache/cache_items.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The **key** of a cache item is a plain string which acts as its
1717
identifier, so it must be unique for each cache pool. You can freely choose the
1818
keys, but they should only contain letters (A-Z, a-z), numbers (0-9) and the
1919
``_`` and ``.`` symbols. Other common symbols (such as ``{``, ``}``, ``(``,
20-
``)``, ``/``, ``\`` and ``@``) are reserved by the PSR-6 standard for future
20+
``)``, ``/``, ``\``, ``@`` and ``:``) are reserved by the PSR-6 standard for future
2121
uses.
2222

2323
The **value** of a cache item can be any data represented by a type which is

contributing/code_of_conduct/care_team.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ also contact all of them at once by emailing **coc@symfony.com**:
2727
* *Twitter*: `@EmilieLorenzo <https://twitter.com/EmilieLorenzo>`_
2828
* *SensioConnect*: `emilielorenzo <https://connect.sensiolabs.com/profile/emilielorenzo>`_
2929

30-
* **Tobias Nyholm**
31-
32-
* *E-mail*: tobias.nyholm [at] gmail.com
33-
* *Twitter*: `@tobiasnyholm <https://twitter.com/tobiasnyholm>`_
34-
* *SensioConnect*: `tobias <https://connect.sensiolabs.com/profile/tobias>`_
35-
3630
* **Michelle Sanver**
3731

3832
* *E-mail*: hello [at] michellesanver.com
3933
* *Twitter*: `@michellesanver <https://twitter.com/michellesanver>`_
4034
* *SensioConnect*: `michellesanver <https://connect.sensiolabs.com/profile/michellesanver>`_
4135

36+
* **Tobias Nyholm**
37+
38+
* *E-mail*: tobias.nyholm [at] gmail.com
39+
* *Twitter*: `@tobiasnyholm <https://twitter.com/tobiasnyholm>`_
40+
* *SensioConnect*: `tobias <https://connect.sensiolabs.com/profile/tobias>`_
41+
4242
About the CARE Team
4343
-------------------
4444

reference/configuration/doctrine.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ If you want to configure multiple connections in YAML, put them under the
142142
user: root
143143
password: null
144144
host: localhost
145-
server_version: 5.6
145+
server_version: '5.6'
146146
customer:
147147
dbname: customer
148148
user: root
149149
password: null
150150
host: localhost
151-
server_version: 5.7
151+
server_version: '5.7'
152152
153153
The ``database_connection`` service always refers to the *default* connection,
154154
which is the first one defined or the one configured via the

reference/configuration/framework.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ Configuration
106106
* `magic_call`_
107107
* `throw_exception_on_invalid_index`_
108108

109+
* `property_info`_
110+
111+
* :ref:`enabled <reference-property-info-enabled>`
112+
109113
* `request`_:
110114

111115
* `formats`_
@@ -1576,6 +1580,16 @@ throw_exception_on_invalid_index
15761580
When enabled, the ``property_accessor`` service throws an exception when you
15771581
try to access an invalid index of an array.
15781582

1583+
property_info
1584+
~~~~~~~~~~~~~
1585+
1586+
.. _reference-property-info-enabled:
1587+
1588+
enabled
1589+
.......
1590+
1591+
**type**: ``boolean`` **default**: ``false``
1592+
15791593
validation
15801594
~~~~~~~~~~
15811595

workflow/state-machines.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ you can get this state machine by injecting the Workflow registry service::
201201
{
202202
private $workflows;
203203

204-
public function __constructor(Registry $workflows)
204+
public function __construct(Registry $workflows)
205205
{
206206
$this->workflows = $workflows;
207207
}

0 commit comments

Comments
 (0)