Total Complexity | 2 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 0 |
1 | <?php |
||
11 | class LogicalDisk extends CimLogicalDisk |
||
12 | { |
||
13 | protected $uuid = '{8502C52C-5FBB-11D2-AAC1-006008C78BC7}'; |
||
14 | |||
15 | protected $compressed; |
||
16 | |||
17 | protected $driveType; |
||
18 | |||
19 | protected $fileSystem; |
||
20 | |||
21 | protected $maximumComponentLength; |
||
22 | |||
23 | protected $mediaType; |
||
24 | |||
25 | protected $providerName; |
||
26 | |||
27 | protected $quotasDisabled; |
||
28 | |||
29 | protected $quotasIncomplete; |
||
30 | |||
31 | protected $quotasRebuilding; |
||
32 | |||
33 | protected $supportsDiskQuotas; |
||
34 | |||
35 | protected $supportsFileBasedCompression; |
||
36 | |||
37 | protected $volumeDirty; |
||
38 | |||
39 | protected $volumeName; |
||
40 | |||
41 | protected $volumeSerialNumber; |
||
42 | |||
43 | protected $attribute_casting = [ |
||
44 | 'driveType' => 'int', |
||
45 | ]; |
||
46 | |||
47 | 2 | public static function query($connection = null) |
|
48 | { |
||
49 | 2 | return new LogicalDiskBuilder($self = new static(), $self->getConnection($connection)); |
|
50 | } |
||
51 | |||
52 | public function getVolumeName() |
||
55 | } |
||
56 | } |
||
57 |