Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | final class CreateFromInstance implements ObjectConstructor |
||
19 | { |
||
20 | /** |
||
21 | * The already instantiated object |
||
22 | * |
||
23 | * @var object |
||
24 | */ |
||
25 | private $object; |
||
26 | |||
27 | /** |
||
28 | * Constructor |
||
29 | * |
||
30 | * @param object $object |
||
31 | */ |
||
32 | 1 | public function __construct($object) |
|
35 | 1 | } |
|
36 | |||
37 | /** |
||
38 | * Returns the instantiated object |
||
39 | * |
||
40 | * @return object |
||
41 | */ |
||
42 | 1 | public function construct() |
|
47 |