Skip to content

Commit 834f916

Browse files
committed
Merge branch '4.4'
* 4.4: Remove space before self closing xml tag Added the missing "experimental" notices in some components use Cookie::create()
2 parents e28d3f4 + c19d572 commit 834f916

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/http_foundation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ attribute::
413413

414414
use Symfony\Component\HttpFoundation\Cookie;
415415

416-
$response->headers->setCookie(new Cookie('foo', 'bar'));
416+
$response->headers->setCookie(Cookie::create('foo', 'bar'));
417417

418418
The
419419
:method:`Symfony\\Component\\HttpFoundation\\ResponseHeaderBag::setCookie`

components/mime.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The Mime Component
77
==================
88

9-
The MIME component allows manipulating the MIME messages used to send emails
9+
The Mime component allows manipulating the MIME messages used to send emails
1010
and provides utilities related to MIME types.
1111

1212
Installation

components/phpunit_bridge.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ If you have installed the bridge through Composer, you can run it by calling e.g
645645

646646
It's possible to change the base version of PHPUnit by setting the
647647
``SYMFONY_PHPUNIT_VERSION`` env var in the ``phpunit.xml.dist`` file (e.g.
648-
``<server name="SYMFONY_PHPUNIT_VERSION" value="5.5" />``). This is the
648+
``<server name="SYMFONY_PHPUNIT_VERSION" value="5.5"/>``). This is the
649649
preferred method as it can be committed to your version control repository.
650650

651651
It's also possible to set ``SYMFONY_PHPUNIT_VERSION`` as a real env var

0 commit comments

Comments
 (0)