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

GeneratorCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
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