Completed
Push — dot-language-processor ( 82cdb7...13d982 )
by Luis
14:10
created

GeneratorCommand::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * PHP version 7.1
4
 *
5
 * This source file is subject to the license that is bundled with this package in the file LICENSE.
6
 */
7
8
namespace PhUml\Console\Commands;
9
10
use PhUml\Console\ProgressDisplay;
11
use Symfony\Component\Console\Command\Command;
12
13
class GeneratorCommand extends Command
14
{
15
    /** @var ProgressDisplay */
16
    protected $display;
17
18
    public function __construct(ProgressDisplay $display)
19
    {
20
        parent::__construct(null);
21
        $this->display = $display;
22
    }
23
}
24