Skip to content

Commit abf57cf

Browse files
committed
Merge remote-tracking branch 'upstream/3.3' into 3.3
2 parents 9437ff7 + e9d921e commit abf57cf

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

components/config/definition.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ tree with ``append()``::
555555
->isRequired()
556556
->requiresAtLeastOneElement()
557557
->useAttributeAsKey('name')
558-
->arrayPrototype
558+
->arrayPrototype()
559559
->children()
560560
->scalarNode('value')->isRequired()->end()
561561
->end()

doctrine.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ can automatically generate an empty ``test_project`` database for you:
184184
'dbal' => array(
185185
'charset' => 'utf8mb4',
186186
'default_table_options' => array(
187-
'charset' => 'utf8mb4'
188-
'collate' => 'utf8mb4_unicode_ci'
187+
'charset' => 'utf8mb4',
188+
'collate' => 'utf8mb4_unicode_ci',
189189
)
190190
),
191191
));

reference/configuration/security.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ dn_string
478478
**type**: ``string`` **default**: ``{username}``
479479

480480
This is the string which will be used as the bind DN. The ``{username}``
481-
placeholder will be replaced with the user-provided value (his login).
481+
placeholder will be replaced with the user-provided value (their login).
482482
Depending on your LDAP server's configuration, you may need to override
483483
this value.
484484

reference/configuration/twig.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ TwigBundle Configuration ("twig")
5555
paths:
5656
'%kernel.project_dir%/vendor/acme/foo-bar/templates': foo_bar
5757
58-
# The following were added in Symfony 2.7.
5958
date:
6059
format: d.m.Y, H:i:s
6160
interval_format: '%%d days'

testing/bootstrap.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To do this, first add a file that executes your bootstrap work::
2020

2121
require __DIR__.'/../vendor/autoload.php';
2222

23-
Then, configure ``phpunit.xml.dist`` to execute this ``bootstra.php`` file
23+
Then, configure ``phpunit.xml.dist`` to execute this ``bootstrap.php`` file
2424
before running the tests:
2525

2626
.. code-block:: xml
@@ -49,4 +49,4 @@ cache to be cleared:
4949
</phpunit>
5050
5151
This now becomes an environment variable (i.e. ``$_ENV``) that's available
52-
in the custom bootstrap file (``tests.bootstrap.php``).
52+
in the custom bootstrap file (``tests/bootstrap.php``).

workflow/usage.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ what actions are allowed on a blog post::
172172
// ...
173173
}
174174

175-
// See all the available transition for the post in the current state
175+
// See all the available transitions for the post in the current state
176176
$transitions = $workflow->getEnabledTransitions($post);
177177

178178
Using Events
@@ -250,7 +250,8 @@ order:
250250
* ``workflow.[workflow name].announce``
251251
* ``workflow.[workflow name].announce.[transition name]``
252252

253-
Here is an example how to enable logging for every time a the "blog_publishing" workflow leaves a place::
253+
Here is an example of how to enable logging for every time a the "blog_publishing"
254+
workflow leaves a place::
254255

255256
use Psr\Log\LoggerInterface;
256257
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

0 commit comments

Comments
 (0)