Skip to content

Commit f05fb5e

Browse files
committed
Fix PHP 8.4 deprecation wranings.
1 parent 8d769d6 commit f05fb5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/Document/ErrorSource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static function fromArray(array $source): self
7777
* @param string|null $parameter
7878
* @param string|null $header
7979
*/
80-
public function __construct(string $pointer = null, string $parameter = null, string $header = null)
80+
public function __construct(?string $pointer = null, ?string $parameter = null, ?string $header = null)
8181
{
8282
$this->pointer = $pointer;
8383
$this->parameter = $parameter;

0 commit comments

Comments
 (0)