File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
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
+ ## [ 9.2.31] - 2024-03-02
6
+
7
+ ### Changed
8
+
9
+ * Do not use implicitly nullable parameters
10
+
5
11
## [ 9.2.30] - 2023-12-22
6
12
7
13
### Changed
@@ -505,6 +511,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
505
511
506
512
* This component is no longer supported on PHP 7.1
507
513
514
+ [ 9.2.31 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.30...9.2.31
508
515
[ 9.2.30 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.29...9.2.30
509
516
[ 9.2.29 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.28...9.2.29
510
517
[ 9.2.28 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.27...9.2.28
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ abstract class AbstractNode implements Countable
46
46
*/
47
47
private $ id ;
48
48
49
- public function __construct (string $ name , self $ parent = null )
49
+ public function __construct (string $ name , ? self $ parent = null )
50
50
{
51
51
if (substr ($ name , -1 ) === DIRECTORY_SEPARATOR ) {
52
52
$ name = substr ($ name , 0 , -1 );
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ final class Version
22
22
public static function id (): string
23
23
{
24
24
if (self ::$ version === null ) {
25
- self ::$ version = (new VersionId ('9.2.30 ' , dirname (__DIR__ )))->getVersion ();
25
+ self ::$ version = (new VersionId ('9.2.31 ' , dirname (__DIR__ )))->getVersion ();
26
26
}
27
27
28
28
return self ::$ version ;
You can’t perform that action at this time.
0 commit comments