Scope
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 87
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 42
dl 0
loc 87
c 0
b 0
f 0
1
<?php
2
3
namespace CyberLine\SystemdState\Types;
4
5
class Scope 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
    protected $Documentation;
34
35
    /** @var array */
36
    protected $DropInPaths = [];
37
38
    protected $FragmentPath;
39
40
    protected $IOAccounting;
41
42
    protected $IOWeight;
43
44
    protected $KillMode;
45
46
    protected $KillSignal;
47
48
    protected $MemoryAccounting;
49
50
    protected $MemoryCurrent;
51
52
    protected $MemoryHigh;
53
54
    protected $MemoryLimit;
55
56
    protected $MemoryLow;
57
58
    protected $MemoryMax;
59
60
    protected $MemorySwapMax;
61
62
    /** @var array */
63
    protected $Requires = [];
64
65
    protected $Result;
66
67
    protected $SendSIGHUP;
68
69
    protected $SendSIGKILL;
70
71
    protected $Slice;
72
73
    protected $StartupBlockIOWeight;
74
75
    protected $StartupCPUShares;
76
77
    protected $StartupCPUWeight;
78
79
    protected $StartupIOWeight;
80
81
    protected $TasksAccounting;
82
83
    protected $TasksCurrent;
84
85
    protected $TasksMax;
86
87
    protected $TimeoutStopUSec;
88
89
    protected $UnitFilePreset;
90
91
    protected $UnitFileState;
92
}
93