Completed
Push — master ( 930490...fc561b )
by
unknown
23s queued 11s
created

Limit::__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\Webspace;
5
6
class Limit extends \PleskX\Api\Struct
7
{
8
    /** @var string */
9
    public $name;
10
11
    /** @var string */
12
    public $value;
13
14
    public function __construct($apiResponse)
15
    {
16
        $this->_initScalarProperties($apiResponse, [
17
            'name',
18
            'value',
19
        ]);
20
    }
21
}
22