HeaderLote   A
last analyzed

Complexity

Total Complexity 12

Size/Duplication

Total Lines 89
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 4
Bugs 1 Features 0
Metric Value
wmc 12
c 4
b 1
f 0
lcom 1
cbo 3
dl 0
loc 89
rs 10

11 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getOperacao() 0 4 1
A getServico() 0 4 1
A getFormaLancamento() 0 4 1
A getMensagens() 0 4 1
A setOperacao() 0 5 1
A setServico() 0 5 1
A setFormaLancamento() 0 5 1
A setMensagens() 0 5 1
A addMensagem() 0 8 2
A removeMensagem() 0 5 1
1
<?php
2
3
namespace Umbrella\Ya\RetornoBoleto\Cnab\Cnab240;
4
5
use Easy\Collections\ArrayList;
6
use Easy\Collections\VectorInterface;
7
use Umbrella\Ya\RetornoBoleto\Cnab\CnabHeaderInterface;
8
9
class HeaderLote extends AbstractHeader implements CnabHeaderInterface
10
{
11
    protected $operacao;
12
    protected $servico;
13
    protected $formaLancamento;
14
15
    /**
16
     *
17
     * @var VectorInterface
18
     */
19
    protected $mensagens;
20
21
    public function __construct()
22
    {
23
        $this->mensagens = new ArrayList();
24
        parent::__construct();
25
    }
26
27
    public function getOperacao()
28
    {
29
        return $this->operacao;
30
    }
31
32
    public function getServico()
33
    {
34
        return $this->servico;
35
    }
36
37
    public function getFormaLancamento()
38
    {
39
        return $this->formaLancamento;
40
    }
41
42
    public function getMensagens()
43
    {
44
        return $this->mensagens;
45
    }
46
47
    /**
48
     * @param string $operacao
49
     */
50
    public function setOperacao($operacao)
51
    {
52
        $this->operacao = $operacao;
53
        return $this;
54
    }
55
56
    /**
57
     * @param string $servico
58
     */
59
    public function setServico($servico)
60
    {
61
        $this->servico = $servico;
62
        return $this;
63
    }
64
65
    /**
66
     * @param string $formaLancamento
67
     */
68
    public function setFormaLancamento($formaLancamento)
69
    {
70
        $this->formaLancamento = $formaLancamento;
71
        return $this;
72
    }
73
74
    public function setMensagens(VectorInterface $mensagens)
75
    {
76
        $this->mensagens = $mensagens;
77
        return $this;
78
    }
79
80
    /**
81
     * @param string $mensagem
82
     */
83
    public function addMensagem($mensagem)
84
    {
85
        $trim = trim($mensagem);
86
        if (!empty($trim)) {
87
            $this->cnabs->add($mensagem);
88
        }
89
        return $this;
90
    }
91
92
    public function removeMensagem($mensagem)
93
    {
94
        $this->cnabs->remove($mensagem);
95
        return $this;
96
    }
97
}
98