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

InterfaceModel   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

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

1 Method

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