Skip to content

Commit a893f0b

Browse files
wiewiurdpMateuszKolankowski
andauthored
IBX-10507: Allowed nullable type declarations for method parameters across the codebase (#37)
Co-authored-by: MateuszKolankowski <wiewiurdp@tlen. pl>
1 parent 648bf76 commit a893f0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/contracts/Exception/InvalidConfigurationException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class InvalidConfigurationException extends Exception
1515
{
16-
public function __construct(string $message = '', int $code = 1, Throwable $previous = null)
16+
public function __construct(string $message = '', int $code = 1, ?Throwable $previous = null)
1717
{
1818
parent::__construct("Invalid schema configuration: {$message}", $code, $previous);
1919
}

0 commit comments

Comments
 (0)