Completed
Push — develop ( e382f7...b48d9b )
by Paul
02:10
created

InterfaceModel::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace PhpUnitGen\Model;
4
5
use Doctrine\Common\Collections\ArrayCollection;
6
use PhpUnitGen\Model\ModelInterface\InterfaceModelInterface;
7
use PhpUnitGen\Model\PropertyTrait\ClassLikeTrait;
8
use PhpUnitGen\Model\PropertyTrait\NameTrait;
9
use PhpUnitGen\Model\PropertyTrait\NodeTrait;
10
11
/**
12
 * Class InterfaceModel.
13
 *
14
 * @author     Paul Thébaud <[email protected]>.
15
 * @copyright  2017-2018 Paul Thébaud <[email protected]>.
16
 * @license    https://opensource.org/licenses/MIT The MIT license.
17
 * @link       https://github.com/paul-thebaud/phpunit-generator
18
 * @since      Class available since Release 2.0.0.
19
 */
20
class InterfaceModel implements InterfaceModelInterface
21
{
22
    use NameTrait;
23
    use NodeTrait;
24
    use ClassLikeTrait;
25
26
    /**
27
     * InterfaceModel constructor.
28
     */
29
    public function __construct()
30
    {
31
        $this->functions = new ArrayCollection();
32
    }
33
}
34