Skip to content

Commit 232c4db

Browse files
author
Lucas Michot
committed
Set docblocks and add missing dots.
1 parent 2e99160 commit 232c4db

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

src/DumpServerCommand.php

+15-2
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,40 @@ class DumpServerCommand extends Command
2020
*
2121
* @var string
2222
*/
23-
protected $signature = 'dump-server {--format=cli : The output format (cli,html)}';
23+
protected $signature = 'dump-server {--format=cli : The output format (cli,html).}';
2424

2525
/**
2626
* The console command description.
2727
*
2828
* @var string
2929
*/
30-
protected $description = 'Start the dump server to collect dump information';
30+
protected $description = 'Start the dump server to collect dump information.';
3131

3232
/**
33+
* The Dump server.
34+
*
3335
* @var \Symfony\Component\VarDumper\Server\DumpServer
3436
*/
3537
private $server;
3638

39+
/**
40+
* DumpServerCommand constructor.
41+
*
42+
* @param \Symfony\Component\VarDumper\Server\DumpServer $server
43+
* @return void
44+
*/
3745
public function __construct(DumpServer $server)
3846
{
3947
$this->server = $server;
4048

4149
parent::__construct();
4250
}
4351

52+
/**
53+
* Handle the command.
54+
*
55+
* @return void
56+
*/
4457
public function handle()
4558
{
4659
switch ($format = $this->option('format')) {

0 commit comments

Comments
 (0)