Skip to content

Commit bdba5b0

Browse files
authored
Merge pull request #21 from arnedesmedt/feature/php8.4-remove-deprecation-warnings-explicit-nullable-types
Explicit nullable types
2 parents 3db2352 + 5285ec0 commit bdba5b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ImmutableRecordLogic.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static function fromArray(array $nativeData): self
5656
return new self(null, $nativeData);
5757
}
5858

59-
private function __construct(array $recordData = null, array $nativeData = null)
59+
private function __construct(array|null $recordData = null, array|null $nativeData = null)
6060
{
6161
if (null === self::$__propTypeMap) {
6262
self::$__propTypeMap = self::buildPropTypeMap();

0 commit comments

Comments
 (0)