Total Complexity | 1 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | class SWbemObjectPath extends AbstractWbemObject implements ObjectPath |
||
13 | { |
||
14 | protected $authority; |
||
15 | |||
16 | protected $class; |
||
17 | |||
18 | protected $display_name; |
||
19 | |||
20 | protected $is_class; |
||
21 | |||
22 | protected $is_singleton; |
||
23 | |||
24 | protected $keys; |
||
25 | |||
26 | protected $namespace; |
||
27 | |||
28 | protected $parent_namespace; |
||
29 | |||
30 | protected $path; |
||
31 | |||
32 | protected $relative_path; |
||
33 | |||
34 | protected $server; |
||
35 | |||
36 | /** @var VariantWrapper|ObjectPathVariant */ |
||
37 | protected $object; |
||
38 | |||
39 | 2 | public function __construct(VariantWrapper $variant) |
|
56 |