Skip to content

Commit e98f0a1

Browse files
committed
Merge branch '4.0'
2 parents 4c6ab7f + e6014d4 commit e98f0a1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

configuration/micro_kernel_trait.rst

-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ that define your bundles, your services and your routes:
102102
``RouteCollectionBuilder`` has methods that make adding routes in PHP more
103103
fun. You can also load external routing files (shown below).
104104

105-
106105
Advanced Example: Twig, Annotations and the Web Debug Toolbar
107106
-------------------------------------------------------------
108107

reference/forms/types/datetime.rst

+2-2
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',

0 commit comments

Comments
 (0)