Skip to content

Commit b47ba23

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Move to the new default 5.x branch Use PHPUnit 9.4 to run the test suite. Fix type annotation
2 parents 20969e6 + 40dc7e6 commit b47ba23

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Q | A
22
| ------------- | ---
3-
| Branch? | master for features / 3.4, 4.4 or 5.1 for bug fixes <!-- see below -->
3+
| Branch? | 5.x for features / 3.4, 4.4 or 5.1 for bug fixes <!-- see below -->
44
| Bug fix? | yes/no
55
| New feature? | yes/no <!-- please update src/**/CHANGELOG.md files -->
66
| Deprecations? | yes/no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
@@ -16,5 +16,5 @@ Additionally (see https://symfony.com/releases):
1616
- Never break backward compatibility (see https://symfony.com/bc).
1717
- Bug fixes must be submitted against the lowest maintained branch where they apply
1818
(lowest branches are regularly merged to upper ones so they get the fixes too.)
19-
- Features and deprecations must be submitted against branch master.
19+
- Features and deprecations must be submitted against branch 5.x.
2020
-->

phpunit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if (!getenv('SYMFONY_PHPUNIT_VERSION')) {
1515
if (\PHP_VERSION_ID < 70300) {
1616
putenv('SYMFONY_PHPUNIT_VERSION=8.5');
1717
} else {
18-
putenv('SYMFONY_PHPUNIT_VERSION=9.3');
18+
putenv('SYMFONY_PHPUNIT_VERSION=9.4');
1919
}
2020
} elseif (\PHP_VERSION_ID >= 70000) {
2121
putenv('SYMFONY_PHPUNIT_VERSION=6.5');

src/Symfony/Component/ExpressionLanguage/Token.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function __toString()
5454
/**
5555
* Tests the current token for a type and/or a value.
5656
*
57-
* @param array|int $type The type to test
57+
* @param string $type The type to test
5858
* @param string|null $value The token value
5959
*
6060
* @return bool

0 commit comments

Comments
 (0)