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

DataInfo::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 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 DataInfo extends Struct
9
{
10
    /** @var string */
11
    public $name;
12
13
    /** @var string */
14
    public $header;
15
16
    public function __construct($apiResponse)
17
    {
18
        $this->_initScalarProperties($apiResponse, [
19
            'name',
20
            'header',
21
        ]);
22
    }
23
}
24