Completed
Push — master ( 2d7b6e...0da056 )
by Aleksander
04:51
created

Stat::getClicks()   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\Common\Model;
6
7
class Stat extends Model
8
{
9
    protected $date = null;
10
11
    protected $placeGroup = null;
12
13
    protected $clicks = null;
14
15
    protected $spending = null;
16
17
    protected $shows = null;
18
19
    protected $detailedStats = null;
20
21
    /**
22
     * @return null
23
     */
24 1
    public function getDate()
25
    {
26 1
        return $this->date;
27
    }
28
29
    /**
30
     * @return null
31
     */
32 1
    public function getPlaceGroup()
33
    {
34 1
        return $this->placeGroup;
35
    }
36
37
    /**
38
     * @return null
39
     */
40 1
    public function getClicks()
41
    {
42 1
        return $this->clicks;
43
    }
44
45
    /**
46
     * @return null
47
     */
48 1
    public function getSpending()
49
    {
50 1
        return $this->spending;
51
    }
52
53
    /**
54
     * @return null
55
     */
56 1
    public function getShows()
57
    {
58 1
        return $this->shows;
59
    }
60
61
    /**
62
     * @return null
63
     */
64 1
    public function getDetailedStats()
65
    {
66 1
        return $this->detailedStats;
67
    }
68
}
69