Completed
Push — master ( cdb73e...fb348d )
by Mathew
02:04
created

Balance::getSpendToday()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Thepixeldeveloper\Mondo\Response;
4
5
/**
6
 * Class Balance
7
 *
8
 * @package Thepixeldeveloper\Mondo\Response
9
 */
10
class Balance
11
{
12
    /**
13
     * Balance.
14
     *
15
     * @var integer
16
     */
17
    protected $balance;
18
19
    /**
20
     * Currency.
21
     *
22
     * @var string
23
     */
24
    protected $currency;
25
26
    /**
27
     * Spend today.
28
     *
29
     * @var integer
30
     */
31
    protected $spendToday;
32
33
    /**
34
     * @return int
35
     */
36
    public function getBalance()
37
    {
38
        return $this->balance;
39
    }
40
41
    /**
42
     * @return string
43
     */
44
    public function getCurrency()
45
    {
46
        return $this->currency;
47
    }
48
49
    /**
50
     * @return int
51
     */
52
    public function getSpendToday()
53
    {
54
        return $this->spendToday;
55
    }
56
}
57