Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d4750f7

Browse files
committed
Merge branch '4.0' into 4.1
* 4.0: added the initial members of the CARE team Update event_dispatcher.rst Improved the Symfony License pages Updated from `new MyFormType()` to `MyFormType::class` Creating Messages link seems to be broken
2 parents a2140f0 + f30b44e commit d4750f7

File tree

6 files changed

+44
-23
lines changed

6 files changed

+44
-23
lines changed

contributing/code/license.rst

Lines changed: 11 additions & 15 deletions
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

Lines changed: 21 additions & 3 deletions
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 **[email protected]**.
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 **[email protected]**:
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

Lines changed: 7 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Learn more
161161

162162
.. _`Swift Mailer`: http://swiftmailer.org/
163163
.. _`SwiftMailerBundle`: https://github.com/symfony/swiftmailer-bundle
164-
.. _`Creating Messages`: http://swiftmailer.org/docs/messages.html
164+
.. _`Creating Messages`: https://swiftmailer.symfony.com/docs/messages.html
165165
.. _`Mandrill`: https://mandrill.com/
166166
.. _`SendGrid`: https://sendgrid.com/
167167
.. _`Amazon SES`: http://aws.amazon.com/ses/

event_dispatcher.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ listener class:
127127

128128
There is an optional attribute for the ``kernel.event_listener`` tag called
129129
``priority``, which defaults to ``0`` and it controls the order in which
130-
listeners are executed (the highest the priority, the earlier a listener is
130+
listeners are executed (the higher the priority, the earlier a listener is
131131
executed). This is useful when you need to guarantee that one listener is
132132
executed before another. The priorities of the internal Symfony listeners
133133
usually range from ``-255`` to ``255`` but your own listeners can use any

reference/forms/types/collection.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,13 +343,13 @@ type::
343343
entry_type
344344
~~~~~~~~~~
345345

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

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

354354
prototype
355355
~~~~~~~~~

0 commit comments

Comments
 (0)