Skip to content

Commit f96625e

Browse files
committed
Merge branch '3.3' into 3.4
2 parents c71b040 + aab5c94 commit f96625e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

configuration/micro_kernel_trait.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ that define your bundles, your services and your routes:
104104
``RouteCollectionBuilder`` has methods that make adding routes in PHP more
105105
fun. You can also load external routing files (shown below).
106106

107-
108107
Advanced Example: Twig, Annotations and the Web Debug Toolbar
109108
-------------------------------------------------------------
110109

reference/forms/types/datetime.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ as a series of ``select`` boxes. When the placeholder value is a string,
8383
it will be used as the **blank value** of all select boxes::
8484

8585
use Symfony\Component\Form\Extension\Core\Type\DateTimeType;
86-
86+
8787
$builder->add('startDateTime', DateTimeType::class, array(
8888
'placeholder' => 'Select a value',
8989
));
@@ -92,7 +92,7 @@ Alternatively, you can use an array that configures different placeholder
9292
values for the year, month, day, hour, minute and second fields::
9393

9494
use Symfony\Component\Form\Extension\Core\Type\DateTimeType;
95-
95+
9696
$builder->add('startDateTime', DateTimeType::class, array(
9797
'placeholder' => array(
9898
'year' => 'Year', 'month' => 'Month', 'day' => 'Day',

security/custom_provider.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ When a user submits a username and password, the authentication layer asks
99
the configured user provider to return a user object for a given username.
1010
Symfony then checks whether the password of this user is correct and generates
1111
a security token so the user stays authenticated during the current session.
12-
Out of the box, Symfony has four user providers: ``memory``, ``entity``,
12+
Out of the box, Symfony has four user providers: ``memory``, ``entity``,
1313
``ldap`` and ``chain``. In this entry you'll see how you can create your
1414
own user provider, which could be useful if your users are accessed via a
1515
custom database, a file, or - as shown in this example - a web service.

0 commit comments

Comments
 (0)