Completed
Push — master ( 4c4b08...572d49 )
by Lukáš
02:13
created

wasChangedConstantSymbols()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Fousky\Component\iDoklad\Model\System;
4
5
use Fousky\Component\iDoklad\Model\iDokladAbstractModel;
6
7
/**
8
 * @author Lukáš Brzák <[email protected]>
9
 */
10
class CodeBooksChangesApiModel extends iDokladAbstractModel
11
{
12
    public $Bank = false;
13
    public $ConstantSymbols = false;
14
    public $Country = false;
15
    public $Currencies = false;
16
    public $ExchangeRates = false;
17
    public $PaymentOptions = false;
18
    public $VatRates = false;
19
20
    /**
21
     * @return bool
22
     */
23
    public function wasChangedBank(): bool
24
    {
25
        return $this->Bank;
26
    }
27
28
    /**
29
     * @return bool
30
     */
31
    public function wasChangedConstantSymbols(): bool
32
    {
33
        return $this->ConstantSymbols;
34
    }
35
36
    /**
37
     * @return bool
38
     */
39
    public function wasChangedCountry(): bool
40
    {
41
        return $this->Country;
42
    }
43
44
    /**
45
     * @return bool
46
     */
47
    public function wasChangedCurrencies(): bool
48
    {
49
        return $this->Currencies;
50
    }
51
52
    /**
53
     * @return bool
54
     */
55
    public function wasChangedExchangeRates(): bool
56
    {
57
        return $this->ExchangeRates;
58
    }
59
60
    /**
61
     * @return bool
62
     */
63
    public function wasChangedPaymentOptions(): bool
64
    {
65
        return $this->PaymentOptions;
66
    }
67
68
    /**
69
     * @return bool
70
     */
71
    public function wasChangedVatRates(): bool
72
    {
73
        return $this->VatRates;
74
    }
75
}
76