Completed
Push — master ( 10fb37...d4e3a9 )
by Alexei
21s queued 12s
created

Info   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php
2
// Copyright 1999-2019. Plesk International GmbH.
3
4
namespace PleskX\Api\Struct\ProtectedDirectory;
5
6
use PleskX\Api\Struct;
7
8
class Info extends Struct
9
{
10
    /** @var integer */
11
    public $id;
12
13
    public function __construct($apiResponse)
14
    {
15
        $this->_initScalarProperties($apiResponse, [
16
            'id',
17
        ]);
18
    }
19
}
20