Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function setDados( |
||
17 | string $nossoNumero, string $dataVencimento, string $valor, ?string $limitePagamento = null |
||
18 | ): self |
||
19 | { |
||
20 | $this->numero_nosso_numero = str_pad($nossoNumero, 8, '0', STR_PAD_LEFT); |
||
21 | $this->data_vencimento = $dataVencimento; |
||
22 | $this->valor_titulo = ($valor*100); |
||
23 | if(!empty($limitePagamento)){ |
||
24 | $this->data_limite_pagamento = $limitePagamento; |
||
25 | } |
||
26 | |||
27 | return $this; |
||
28 | } |
||
29 | } |