File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -20,27 +20,40 @@ class DumpServerCommand extends Command
20
20
*
21
21
* @var string
22
22
*/
23
- protected $ signature = 'dump-server {--format=cli : The output format (cli,html)} ' ;
23
+ protected $ signature = 'dump-server {--format=cli : The output format (cli,html). } ' ;
24
24
25
25
/**
26
26
* The console command description.
27
27
*
28
28
* @var string
29
29
*/
30
- protected $ description = 'Start the dump server to collect dump information ' ;
30
+ protected $ description = 'Start the dump server to collect dump information. ' ;
31
31
32
32
/**
33
+ * The Dump server.
34
+ *
33
35
* @var \Symfony\Component\VarDumper\Server\DumpServer
34
36
*/
35
37
private $ server ;
36
38
39
+ /**
40
+ * DumpServerCommand constructor.
41
+ *
42
+ * @param \Symfony\Component\VarDumper\Server\DumpServer $server
43
+ * @return void
44
+ */
37
45
public function __construct (DumpServer $ server )
38
46
{
39
47
$ this ->server = $ server ;
40
48
41
49
parent ::__construct ();
42
50
}
43
51
52
+ /**
53
+ * Handle the command.
54
+ *
55
+ * @return void
56
+ */
44
57
public function handle ()
45
58
{
46
59
switch ($ format = $ this ->option ('format ' )) {
You can’t perform that action at this time.
0 commit comments