Passed
Push — develop ( e84888...251d34 )
by Paul
02:54
created

InterfaceModel::addFunction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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