Completed
Push — include-lib ( fd24a6...4173d3 )
by Arnaud
13:24
created

AbstractGenerator::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
/*
3
 * Copyright (c) Arnaud Ligny <[email protected]>
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
9
namespace Cecil\Generator;
10
11
/**
12
 * Abstract class AbstractGenerator.
13
 */
14
abstract class AbstractGenerator implements GeneratorInterface
15
{
16
    /* @var \Cecil\Config */
17
    protected $config;
18
19
    /**
20
     * {@inheritdoc}
21
     */
22
    public function __construct(\Cecil\Config $config)
23
    {
24
        $this->config = $config;
25
    }
26
}
27