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

Stat   A

Complexity

Total Complexity 6

Size/Duplication

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

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getPlaceGroup() 0 4 1
A getSpending() 0 4 1
A getDetailedStats() 0 4 1
A getDate() 0 4 1
A getClicks() 0 4 1
A getShows() 0 4 1
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