Skip to content

Commit 9e86c0f

Browse files
committed
Merge branch '2.8' into 3.4
* 2.8: added the initial members of the CARE team Update event_dispatcher.rst Improved the Symfony License pages add missing dot Updated from `new MyFormType()` to `MyFormType::class` Creating Messages link seems to be broken
2 parents c2a12fa + 37026a0 commit 9e86c0f

File tree

6 files changed

+45
-24
lines changed

6 files changed

+45
-24
lines changed

contributing/code/license.rst

+11-15
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
.. _symfony2-license:
22

3-
Symfony License
4-
===============
3+
Symfony Code License
4+
====================
55

6-
Symfony is released under the MIT license.
7-
8-
According to `Wikipedia`_:
9-
10-
"It is a permissive license, meaning that it permits reuse within
11-
proprietary software on the condition that the license is distributed with
12-
that software. The license is also GPL-compatible, meaning that the GPL
13-
permits combination and redistribution with software that uses the MIT
14-
License."
15-
16-
The License
17-
-----------
6+
Symfony code is released under `the MIT license`_:
187

198
Copyright (c) 2004-2018 Fabien Potencier
209

@@ -36,4 +25,11 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3625
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3726
THE SOFTWARE.
3827

39-
.. _Wikipedia: https://en.wikipedia.org/wiki/MIT_License
28+
Other Symfony Licenses
29+
----------------------
30+
31+
Check out the :doc:`license of the Symfony documentation </contributing/documentation/license>`
32+
and other `Symfony licenses and trademarks`_.
33+
34+
.. _`the MIT license`: https://en.wikipedia.org/wiki/MIT_License
35+
.. _`Symfony licenses and trademarks`: https://symfony.com/license

contributing/code_of_conduct/care_team.rst

+21-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,27 @@ the CARE team or if you prefer contact only individual members of the CARE team.
1717
Members
1818
-------
1919

20-
Here are all the members of the Code of Conduct CARE team. You can contact
21-
any of them directly using the contact details below or you can also contact all of
22-
them at once by emailing **coc@symfony.com**.
20+
Here are all the members of the Code of Conduct CARE team (in alphabetic order).
21+
You can contact any of them directly using the contact details below or you can
22+
also contact all of them at once by emailing **coc@symfony.com**:
23+
24+
* **Emilie Lorenzo**
25+
26+
* *E-mail*: emilie.lorenzo [at] symfony.com
27+
* *Twitter*: `@EmilieLorenzo <https://twitter.com/EmilieLorenzo>`_
28+
* *SensioConnect*: `emilielorenzo <https://connect.sensiolabs.com/profile/emilielorenzo>`_
29+
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+
36+
* **Michelle Sanver**
37+
38+
* *E-mail*: hello [at] michellesanver.com
39+
* *Twitter*: `@michellesanver <https://twitter.com/michellesanver>`_
40+
* *SensioConnect*: `michellesanver <https://connect.sensiolabs.com/profile/michellesanver>`_
2341

2442
About the CARE Team
2543
-------------------

contributing/documentation/license.rst

+7
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,12 @@ Attribution-Share Alike 3.0 Unported License (`CC BY-SA 3.0`_).
4848

4949
This is a human-readable summary of the `Legal Code (the full license)`_.
5050

51+
Other Symfony Licenses
52+
----------------------
53+
54+
Check out the :doc:`license of the Symfony code </contributing/code/license>`
55+
and other `Symfony licenses and trademarks`_.
56+
5157
.. _`CC BY-SA 3.0`: http://creativecommons.org/licenses/by-sa/3.0/
5258
.. _Legal Code (the full license): http://creativecommons.org/licenses/by-sa/3.0/legalcode
59+
.. _`Symfony licenses and trademarks`: https://symfony.com/license

email.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Learn more
167167
email/*
168168

169169
.. _`Swift Mailer`: http://swiftmailer.org/
170-
.. _`Creating Messages`: http://swiftmailer.org/docs/messages.html
170+
.. _`Creating Messages`: https://swiftmailer.symfony.com/docs/messages.html
171171
.. _`Mandrill`: https://mandrill.com/
172172
.. _`SendGrid`: https://sendgrid.com/
173173
.. _`Amazon SES`: http://aws.amazon.com/ses/

event_dispatcher.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ using a special "tag":
115115
method executed by default is ``onKernelException()``.
116116

117117
The other optional tag attribute is called ``priority``, which defaults to
118-
``0`` and it controls the order in which listeners are executed (the highest
119-
the priority, the earlier a listener is executed). This is useful when you
118+
``0`` and it controls the order in which listeners are executed (the higher
119+
the priority the earlier a listener is executed). This is useful when you
120120
need to guarantee that one listener is executed before another. The priorities
121121
of the internal Symfony listeners usually range from ``-255`` to ``255`` but
122122
your own listeners can use any positive or negative integer.

reference/forms/types/collection.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -347,13 +347,13 @@ type::
347347
entry_type
348348
~~~~~~~~~~
349349

350-
**type**: ``string`` or :class:`Symfony\\Component\\Form\\FormTypeInterface` **default**: Symfony\\Component\\Form\\Extension\\Core\\Type\\TextType
350+
**type**: ``string`` or :class:`Symfony\\Component\\Form\\FormTypeInterface` **default**: ``Symfony\\Component\\Form\\Extension\\Core\\Type\\TextType``
351351

352352
This is the field type for each item in this collection (e.g. ``TextType``,
353353
``ChoiceType``, etc). For example, if you have an array of email addresses,
354354
you'd use the :doc:`EmailType </reference/forms/types/email>`. If you want
355-
to embed a collection of some other form, create a new instance of your
356-
form type and pass it as this option.
355+
to embed a collection of some other form, pass the form type class as this
356+
option (e.g. ``MyFormType::class``).
357357

358358
prototype
359359
~~~~~~~~~

0 commit comments

Comments
 (0)