We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d24b641 + 352f1a5 commit 8bad473Copy full SHA for 8bad473
src/Dumper.php
@@ -9,10 +9,20 @@
9
10
class Dumper
11
{
12
- /** @var Connection */
+ /**
13
+ * The connection.
14
+ *
15
+ * @var \Symfony\Component\VarDumper\Server\Connection|null
16
+ */
17
private $connection;
18
- public function __construct(Connection $connection)
19
20
+ * Dumper constructor.
21
22
+ * @param \Symfony\Component\VarDumper\Server\Connection|null $connection
23
+ * @return void
24
25
+ public function __construct(Connection $connection = null)
26
27
$this->connection = $connection;
28
}
0 commit comments