NetworkAdapter::disable()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 2
ccs 0
cts 1
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 2
1
<?php
2
3
namespace PhpWinTools\WmiScripting\Models;
4
5
use PhpWinTools\WmiScripting\Cim\CimNetworkAdapter;
6
7
class NetworkAdapter extends CimNetworkAdapter
8
{
9
    protected $uuid = '{8502C4C0-5FBB-11D2-AAC1-006008C78BC7}';
10
11
    protected $adapterType;
12
13
    protected $adapterTypeID;
14
15
    protected $gUID;
16
17
    protected $index;
18
19
    protected $installed;
20
21
    protected $interfaceIndex;
22
23
    protected $mACAddress;
24
25
    protected $manufacturer;
26
27
    protected $maxNumberControlled;
28
29
    protected $netConnectionID;
30
31
    protected $netConnectionStatus;
32
33
    protected $netEnabled;
34
35
    protected $physicalAdapter;
36
37
    protected $productName;
38
39
    protected $serviceName;
40
41
    protected $timeOfLastReset;
42
43
    public function enable()
44
    {
45
        //
46
    }
47
48
    public function disable()
49
    {
50
        //
51
    }
52
}
53