Skip to content

Commit e966306

Browse files
committed
- fix: implicitly nullable parameter type updated with explicit type
1 parent 1ee9256 commit e966306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Config extends Arguments implements Configuration
8080
*/
8181
public function __construct(
8282
public string $root = '',
83-
Data $defaults = null)
83+
Data|null $defaults = null)
8484
{
8585
parent::__construct($defaults?->toArray() ?? []);
8686
$this->root = $root ?: getcwd();

0 commit comments

Comments
 (0)