Skip to content

Commit 6a73457

Browse files
committed
Merge branch '4.4'
* 4.4: fix case [Messenger] Removed named parameters and replaced with `?` placeholders for sqlsrv compatibility [FrameworkBundle] Detect indirect env vars in routing [Form] type cannot be a FormTypeInterface anymore [HttpClient] use "idle" instead of "inactivity" when telling about the timeout option Create mailBody with only attachments part present Remove calls to deprecated function assertAttributeX [PhpUnitBridge] make the bridge act as a polyfill for newest PHPUnit features [Intl] Order alpha2 to alpha3 mapping [Routing] added a warning about the getRouteCollection() method Allow sutFqcnResolver to return array [Messenger] Fix incompatibility with FrameworkBundle <4.3.1 Created alias to FlattenException to avoid BC break [Ldap] Add security LdapUser and provider [HttpFoundation] Revert getClientIp @return docblock
2 parents 4479d6a + 165a8ad commit 6a73457

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ CHANGELOG
66

77
* removed `weak_vendor` mode, use `max[self]=0` instead
88

9+
4.4.0
10+
-----
11+
12+
* made the bridge act as a polyfill for newest PHPUnit features
13+
* added `SetUpTearDownTrait` to allow working around the `void` return-type added by PHPUnit 8
14+
915
4.3.0
1016
-----
1117

Legacy/CoverageListenerTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function startTest($test)
7676
$cache = $r->getValue();
7777
$cache = array_replace_recursive($cache, array(
7878
\get_class($test) => array(
79-
'covers' => array($sutFqcn),
79+
'covers' => \is_array($sutFqcn) ? $sutFqcn : array($sutFqcn),
8080
),
8181
));
8282
$r->setValue($testClass, $cache);

0 commit comments

Comments
 (0)