@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace CbCaio\Boletos\Models\Boletos\Base; |
3 | 3 | |
4 | -use CbCaio\Boletos\Generators\Barcode; |
|
5 | -use CbCaio\Boletos\Models\Bancos\Contracts\BancoInterface; |
|
6 | -use CbCaio\Boletos\Models\Beneficiario\Contracts\BeneficiarioInterface; |
|
7 | -use CbCaio\Boletos\Models\BoletoInfo\Contracts\BoletoInfoInterface; |
|
8 | -use CbCaio\Boletos\Models\Boletos\Contracts\BoletoInterface; |
|
9 | -use CbCaio\Boletos\Models\Pagador\Contracts\PagadorInterface; |
|
4 | +use CbCaio\Boletos\Generators\Barcode; |
|
5 | +use CbCaio\Boletos\Models\Bancos\Contracts\BancoInterface; |
|
6 | +use CbCaio\Boletos\Models\Beneficiario\Contracts\BeneficiarioInterface; |
|
7 | +use CbCaio\Boletos\Models\BoletoInfo\Contracts\BoletoInfoInterface; |
|
8 | +use CbCaio\Boletos\Models\Boletos\Contracts\BoletoInterface; |
|
9 | +use CbCaio\Boletos\Models\Pagador\Contracts\PagadorInterface; |
|
10 | 10 | |
11 | 11 | abstract class Boleto implements BoletoInterface |
12 | 12 | { |
@@ -188,7 +188,7 @@ |
||
188 | 188 | break; |
189 | 189 | case ":vencimento": |
190 | 190 | $string = preg_replace("/$attribute" . '\b/', |
191 | - $this->info->getDataVencimentoCalculada(), $string); |
|
191 | + $this->info->getDataVencimentoCalculada(), $string); |
|
192 | 192 | break; |
193 | 193 | } |
194 | 194 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | if (isset($this->attributes['data_vencimento'])) |
91 | 91 | { |
92 | 92 | return Carbon::createFromFormat($this->date_format, $this->attributes['data_vencimento']) |
93 | - ->setTime(0, 0, 0); |
|
93 | + ->setTime(0, 0, 0); |
|
94 | 94 | } else |
95 | 95 | { |
96 | 96 | return NULL; |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | if (isset($this->attributes['data_documento'])) |
106 | 106 | { |
107 | 107 | return Carbon::createFromFormat($this->date_format, $this->attributes['data_documento']) |
108 | - ->setTime(0, 0, 0); |
|
108 | + ->setTime(0, 0, 0); |
|
109 | 109 | } else |
110 | 110 | { |
111 | 111 | return NULL; |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | if (isset($this->attributes['data_processamento'])) |
122 | 122 | { |
123 | 123 | return Carbon::createFromFormat($this->date_format, $this->attributes['data_processamento']) |
124 | - ->setTime(0, 0, 0); |
|
124 | + ->setTime(0, 0, 0); |
|
125 | 125 | } else |
126 | 126 | { |
127 | 127 | return NULL; |