Skip to content

Commit 45df9e2

Browse files
committed
Merge branch '4.4' into 5.1
* 4.4: Fix code example Update database.rst
2 parents 1c8e9e2 + 4a896f8 commit 45df9e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

service_container/tags.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ array element. For example, to retrieve the ``handler_two`` handler::
796796
{
797797
$handlers = iterator_to_array($handlers);
798798

799-
$handlerTwo = $handlers['handler_two']:
799+
$handlerTwo = $handlers['handler_two'];
800800
}
801801
}
802802

testing/database.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ your project and define the new value for the ``DATABASE_URL`` env var:
1515
.. code-block:: bash
1616
1717
# .env.test.local
18-
DATABASE_URL=mysql://USERNAME:PASSWORD@127.0.0.1:3306/DB_NAME?serverVersion=5.7
18+
DATABASE_URL="mysql://USERNAME:PASSWORD@127.0.0.1:3306/DB_NAME?serverVersion=5.7"
1919
2020
.. tip::
2121

0 commit comments

Comments
 (0)