Completed
Push — master ( 2d7c4c...dda5fd )
by Max
03:40
created

DummyPlusParameter   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
c 0
b 0
f 0
dl 0
loc 7
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
/*
3
 * @copyright (c) 2019 Mendel <[email protected]>
4
 * @license see license.txt
5
 */
6
7
namespace drycart\di\tests\dummy;
8
use drycart\di\MagicStoreTrait;
9
10
/**
11
 * Description of Dummy2
12
 *
13
 * @author mendel
14
 */
15
class DummyPlusParameter
16
{
17
    use MagicStoreTrait;
18
    
19
    public function __construct(Dummy $dummy, int $intDummy)
20
    {
21
        $this->_store(get_defined_vars());
22
    }
23
}
24