ApiObjectCall::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
crap 1
1
<?php
2
3
namespace PhpWinTools\WmiScripting\Testing\CallStacks;
4
5
class ApiObjectCall
6
{
7
    protected $api_object;
8
9
    protected $call;
10
11
    protected $parameters;
12
13 2
    public function __construct($api_object, $call, $parameters = [])
14
    {
15 2
        $this->api_object = $api_object;
16 2
        $this->call = $call;
17 2
        $this->parameters = $parameters;
18 2
    }
19
}
20