Completed
Pull Request — master (#7)
by
unknown
01:12
created

setTotalGanhadoresPrimeiroPremio()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 1
1
<?php
2
3
namespace LoteriaApi\Consumer\Reader;
4
5
class LoteriaNumbersNode
6
{
7
    private $numberConcurso;
8
    private $dataConcurso;
9
    private $dezenasConcurso = [];
10
    private $arrecadacaoConcurso;
11
    
12
    private $totalGanhadoresPrimeiroPremio;
13
    private $totalGanhadoresSegundoPremio;
14
    private $totalGanhadoresTerceiroPremio;
15
    
16
    private $valorGanhadoresPrimeiroPremio;
17
    private $valorGanhadoresSegundoPremio;
18
    private $valorGanhadoresTerceiroPremio;
19
20
    private $valorAcumuladoConcurso;
21
    private $valorEstimadoProximoConcurso;
22
23
    public function setNumberConcurso($numberConcurso)
24
    {
25
        $this->numberConcurso = $numberConcurso;
26
        return $this;
27
    }
28
29
    public function setDataConcurso($dataConcurso)
30
    {
31
        $this->dataConcurso = $dataConcurso;
32
        return $this;
33
    }
34
35
    public function setDezenasConcurso(array $dezenasConcurso)
36
    {
37
        $this->dezenasConcurso = $dezenasConcurso;
38
        return $this;
39
    }
40
41
    public function setArrecadacaoConcurso($arrecadacaoConcurso)
42
    {
43
        $this->arrecadacaoConcurso = $arrecadacaoConcurso;
44
        return $this;
45
    }
46
47
    public function setTotalGanhadoresPrimeiroPremio($totalGanhadores)
48
    {
49
        $this->totalGanhadoresPrimeiroPremio = $totalGanhadores;
50
        return $this;
51
    }
52
53
    public function setTotalGanhadoresSegundoPremio($totalGanhadores)
54
    {
55
        $this->totalGanhadoresSegundoPremio = $totalGanhadores;
56
        return $this;
57
    }
58
59
    public function setTotalGanhadoresTerceiroPremio($totalGanhadores)
60
    {
61
        $this->totalGanhadoresTerceiroPremio = $totalGanhadores;
62
        return $this;
63
    }
64
65
    public function setValorGanhadoresPrimeiroPremio($valorGanhadores)
66
    {
67
        $this->valorGanhadoresPrimeiroPremio = $valorGanhadores;
68
        return $this;
69
    }
70
71
    public function setValorGanhadoresSegundoPremio($valorGanhadores)
72
    {
73
        $this->valorGanhadoresSegundoPremio = $valorGanhadores;
74
        return $this;
75
    }
76
77
    public function setValorGanhadoresTerceiroPremio($valorGanhadores)
78
    {
79
        $this->valorGanhadoresTerceiroPremio = $valorGanhadores;
80
        return $this;
81
    }
82
83
    public function setValorAcumuladoConcurso($valorAcumulado)
84
    {
85
        $this->valorAcumuladoConcurso = $valorAcumulado;
86
        return $this;
87
    }
88
89
    public function setValorEstimadoProximoConcurso($valorEstimadoProximo)
90
    {
91
        $this->valorEstimadoProximoConcurso = $valorEstimadoProximo;
92
        return $this;
93
    }
94
95
    public function getNumberConcurso()
96
    {
97
        return $this->numberConcurso;
98
    }
99
100
    public function getDataConcurso()
101
    {
102
        return $this->dataConcurso;
103
    }
104
105
    public function getDezenasConcurso()
106
    {
107
        return $this->dezenasConcurso;
108
    }
109
110
    public function getArrecadacaoConcurso()
111
    {
112
        return $this->arrecadacaoConcurso;
113
    }
114
115
    public function getTotalGanhadoresPrimeiroPremio()
116
    {
117
        return $this->totalGanhadoresPrimeiroPremio;
118
    }
119
120
    public function getTotalGanhadoresSegundoPremio()
121
    {
122
        return $this->totalGanhadoresSegundoPremio;
123
    }
124
125
    public function getTotalGanhadoresTerceiroPremio()
126
    {
127
        return $this->totalGanhadoresTerceiroPremio;
128
    }
129
130
    public function getValorGanhadoresPrimeiroPremio()
131
    {
132
        return $this->valorGanhadoresPrimeiroPremio;
133
    }
134
135
    public function getValorGanhadoresSegundoPremio()
136
    {
137
        return $this->valorGanhadoresSegundoPremio;
138
    }
139
140
    public function getValorGanhadoresTerceiroPremio()
141
    {
142
        return $this->valorGanhadoresTerceiroPremio;
143
    }
144
145
    public function getValorAcumuladoConcurso()
146
    {
147
        return $this->valorAcumuladoConcurso;
148
    }
149
150
    public function getValorEstimadoProximoConcurso()
151
    {
152
        return $this->valorEstimadoProximoConcurso;
153
    }
154
}
155