We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2cf1286 + a4735d4 commit 8e9af58Copy full SHA for 8e9af58
src/Dumper.php
@@ -22,7 +22,7 @@ class Dumper
22
* @param \Symfony\Component\VarDumper\Server\Connection|null $connection
23
* @return void
24
*/
25
- public function __construct(Connection $connection = null)
+ public function __construct(?Connection $connection = null)
26
{
27
$this->connection = $connection;
28
}
src/RequestContextProvider.php
@@ -28,7 +28,7 @@ class RequestContextProvider implements ContextProviderInterface
* @param \Illuminate\Http\Request|null $currentRequest
29
30
31
- public function __construct(Request $currentRequest = null)
+ public function __construct(?Request $currentRequest = null)
32
33
$this->currentRequest = $currentRequest;
34
$this->cloner = new VarCloner;
0 commit comments