Completed
Push — master ( 0da056...260312 )
by Aleksander
05:02
created

GetOutletsResponse::getPager()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
3
namespace Yandex\Market\Partner\Models;
4
5
use Yandex\Market\Partner\Models\Pager;
6
use Yandex\Market\Partner\Models\Outlets;
7
use Yandex\Common\Model;
8
9
class GetOutletsResponse extends Model
10
{
11
12
    protected $pager = null;
13
14
    protected $outlets = null;
15
16
    protected $mappingClasses = [
17
        'pager' => 'Yandex\Market\Partner\Models\Pager',
18
        'outlets' => 'Yandex\Market\Partner\Models\Outlets'
19
    ];
20
21
    protected $propNameMap = [];
22
23
    /**
24
     * Retrieve the pager property
25
     *
26
     * @return Pager|null
27
     */
28 1
    public function getPager()
29
    {
30 1
        return $this->pager;
31
    }
32
33
    /**
34
     * Retrieve the Outlets property
35
     *
36
     * @return Outlets|null
37
     */
38 1
    public function getOutlets()
39
    {
40 1
        return $this->outlets;
41
    }
42
}
43