Completed
Push — master ( 5f1670...625726 )
by Aleksander
05:43
created

GetRegionResponse   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
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 18
ccs 2
cts 2
cp 1
rs 10
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getRegion() 0 4 1
1
<?php
2
3
namespace Yandex\Market\Partner\Models;
4
5
use Yandex\Common\Model;
6
7
class GetRegionResponse extends Model
8
{
9
    protected $region = null;
10
11
    protected $mappingClasses = [
12
        'region' => 'Yandex\Market\Partner\Models\Region'
13
    ];
14
15
    protected $propNameMap = [];
16
17
    /**
18
     * @return null
19
     */
20 1
    public function getRegion()
21
    {
22 1
        return $this->region;
23
    }
24
}
25