File tree Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes are documented in this file using the [ Keep a CHANGELOG] ( http://keepachangelog.com/ ) principles.
4
4
5
+ ## [ 7.0.17] - 2024-03-02
6
+
7
+ ### Changed
8
+
9
+ * Do not use implicitly nullable parameters
10
+
5
11
## [ 7.0.16] - 2024-03-01
6
12
7
13
* No code changes, only updated ` .gitattributes ` to not export non-essential files.
@@ -146,6 +152,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
146
152
* Class names are now abbreviated (unqualified name shown, fully qualified name shown on hover) in the file view of the HTML report
147
153
* Update HTML report to Bootstrap 4
148
154
155
+ [ 7.0.17 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.16...7.0.17
149
156
[ 7.0.16 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.15...7.0.16
150
157
[ 7.0.15 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.14...7.0.15
151
158
[ 7.0.14 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.13...7.0.14
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ final class CodeCoverage
137
137
/**
138
138
* @throws RuntimeException
139
139
*/
140
- public function __construct (Driver $ driver = null , Filter $ filter = null )
140
+ public function __construct (? Driver $ driver = null , ? Filter $ filter = null )
141
141
{
142
142
if ($ filter === null ) {
143
143
$ filter = new Filter ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ final class Xdebug implements Driver
32
32
/**
33
33
* @throws RuntimeException
34
34
*/
35
- public function __construct (Filter $ filter = null )
35
+ public function __construct (? Filter $ filter = null )
36
36
{
37
37
if (!\extension_loaded ('xdebug ' )) {
38
38
throw new RuntimeException ('This driver requires Xdebug ' );
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ abstract class AbstractNode implements \Countable
41
41
*/
42
42
private $ id ;
43
43
44
- public function __construct (string $ name , self $ parent = null )
44
+ public function __construct (string $ name , ? self $ parent = null )
45
45
{
46
46
if (\substr ($ name , -1 ) == \DIRECTORY_SEPARATOR ) {
47
47
$ name = \substr ($ name , 0 , -1 );
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ final class Version
21
21
public static function id (): string
22
22
{
23
23
if (self ::$ version === null ) {
24
- $ version = new VersionId ('7.0.16 ' , \dirname (__DIR__ ));
24
+ $ version = new VersionId ('7.0.17 ' , \dirname (__DIR__ ));
25
25
self ::$ version = $ version ->getVersion ();
26
26
}
27
27
You can’t perform that action at this time.
0 commit comments