Completed
Push — master ( 260312...1dc1a5 )
by Aleksander
04:49
created

GetSettingsResponse   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 19
ccs 2
cts 2
cp 1
rs 10
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getSettings() 0 4 1
1
<?php
2
/**
3
 * Author: @mrG1K ([email protected])
4
 */
5
6
namespace Yandex\Market\Partner\Models;
7
8
use Yandex\Common\Model;
9
use Yandex\Market\Partner\Models\Settings;
10
11
class GetSettingsResponse extends Model
12
{
13
    /**
14
     * @var Settings|null
15
     */
16
    protected $settings = null;
17
18
    protected $mappingClasses = [
19
        'settings' => 'Yandex\Market\Partner\Models\Settings'
20
    ];
21
22
    /**
23
     * @return null|\Yandex\Market\Partner\Models\Settings
24
     */
25 1
    public function getSettings()
26
    {
27 1
        return $this->settings;
28
    }
29
}
30