Skip to content

Commit 9103559

Browse files
Merge branch '7.3' into 7.4
* 7.3: [TypeInfo] Simple array should be array type Handle signals on text input [TwigBridge] Fix form constraint [Runtime] Reuse the already created Request object when the app needs it as argument returns a kernel Update validators.el.xlf Fix MoneyType: add missing step attribute when html5=true [Console] Preserve `--help` option when a command is not found [Messenger] Fix PHP 8.5 deprecation for pgsqlGetNotify() in PostgreSQL transport chore: PHP CS Fixer - do not use deprecated sets in config verify spanish translations with state needs-review-translation
2 parents e96998d + 2e9f47a commit 9103559

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Tests/Extension/FormExtensionBootstrap3LayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function testMoneyWidgetInIso()
7171
$this->assertSame(<<<'HTML'
7272
<div class="input-group">
7373
<span class="input-group-addon">&euro; </span>
74-
<input type="text" id="name" name="name" required="required" class="form-control" /> </div>
74+
<input type="text" id="name" name="name" required="required" inputmode="decimal" class="form-control" /> </div>
7575
HTML,
7676
trim($this->renderWidget($view))
7777
);

Tests/Extension/FormExtensionBootstrap4LayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function testMoneyWidgetInIso()
7676
$this->assertSame(<<<'HTML'
7777
<div class="input-group "><div class="input-group-prepend">
7878
<span class="input-group-text">&euro; </span>
79-
</div><input type="text" id="name" name="name" required="required" class="form-control" /></div>
79+
</div><input type="text" id="name" name="name" required="required" inputmode="decimal" class="form-control" /></div>
8080
HTML,
8181
trim($this->renderWidget($view))
8282
);

Tests/Extension/FormExtensionBootstrap5LayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function testMoneyWidgetInIso()
7575
->createView();
7676

7777
self::assertSame(<<<'HTML'
78-
<div class="input-group "><span class="input-group-text">&euro; </span><input type="text" id="name" name="name" required="required" class="form-control" /></div>
78+
<div class="input-group "><span class="input-group-text">&euro; </span><input type="text" id="name" name="name" required="required" inputmode="decimal" class="form-control" /></div>
7979
HTML,
8080
trim($this->renderWidget($view))
8181
);

Tests/Extension/FormExtensionDivLayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public function testMoneyWidgetInIso()
153153
->createView()
154154
;
155155

156-
$this->assertSame('&euro; <input type="text" id="name" name="name" required="required" />', $this->renderWidget($view));
156+
$this->assertSame('&euro; <input type="text" id="name" name="name" required="required" inputmode="decimal" />', $this->renderWidget($view));
157157
}
158158

159159
public function testHelpAttr()

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
3131
"symfony/emoji": "^7.1|^8.0",
3232
"symfony/finder": "^6.4|^7.0|^8.0",
33-
"symfony/form": "^6.4.20|^7.2.5|^8.0",
33+
"symfony/form": "^6.4.30|~7.3.8|^7.4.1|^8.0.1",
3434
"symfony/html-sanitizer": "^6.4|^7.0|^8.0",
3535
"symfony/http-foundation": "^7.3|^8.0",
3636
"symfony/http-kernel": "^6.4|^7.0|^8.0",

0 commit comments

Comments
 (0)