Skip to content

Commit 8e9af58

Browse files
authored
Merge pull request #96 from JeppeKnockaert/fix-php84-deprecations
Fix PHP 8.4 deprecations
2 parents 2cf1286 + a4735d4 commit 8e9af58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Dumper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Dumper
2222
* @param \Symfony\Component\VarDumper\Server\Connection|null $connection
2323
* @return void
2424
*/
25-
public function __construct(Connection $connection = null)
25+
public function __construct(?Connection $connection = null)
2626
{
2727
$this->connection = $connection;
2828
}

src/RequestContextProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class RequestContextProvider implements ContextProviderInterface
2828
* @param \Illuminate\Http\Request|null $currentRequest
2929
* @return void
3030
*/
31-
public function __construct(Request $currentRequest = null)
31+
public function __construct(?Request $currentRequest = null)
3232
{
3333
$this->currentRequest = $currentRequest;
3434
$this->cloner = new VarCloner;

0 commit comments

Comments
 (0)