Slice
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 82
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 38
dl 0
loc 82
c 0
b 0
f 0
1
<?php
2
3
namespace CyberLine\SystemdState\Types;
4
5
class Slice extends AbstractType
6
{
7
    /** @var array */
8
    protected $After = [];
9
10
    protected $BlockIOAccounting;
11
12
    protected $BlockIOWeight;
13
14
    protected $CPUAccounting;
15
16
    protected $CPUQuotaPerSecUSec;
17
18
    protected $CPUShares;
19
20
    protected $CPUUsageNSec;
21
22
    protected $CPUWeight;
23
24
    /** @var array */
25
    protected $Conflicts = [];
26
27
    protected $ControlGroup;
28
29
    protected $Delegate;
30
31
    protected $DevicePolicy;
32
33
    /** @var array */
34
    protected $Documentation = [];
35
36
    /** @var array */
37
    protected $DropInPaths = [];
38
39
    protected $FragmentPath;
40
41
    protected $IOAccounting;
42
43
    protected $IOWeight;
44
45
    protected $MemoryAccounting;
46
47
    protected $MemoryCurrent;
48
49
    protected $MemoryHigh;
50
51
    protected $MemoryLimit;
52
53
    protected $MemoryLow;
54
55
    protected $MemoryMax;
56
57
    protected $MemorySwapMax;
58
59
    /** @var array */
60
    protected $RequiredBy = [];
61
62
    /** @var array */
63
    protected $Requires = [];
64
65
    protected $Slice;
66
67
    protected $StartupBlockIOWeight;
68
69
    protected $StartupCPUShares;
70
71
    protected $StartupCPUWeight;
72
73
    protected $StartupIOWeight;
74
75
    protected $TasksAccounting;
76
77
    protected $TasksCurrent;
78
79
    protected $TasksMax;
80
81
    protected $UnitFilePreset;
82
83
    protected $UnitFileState;
84
85
    /** @var array */
86
    protected $WantedBy = [];
87
}
88