Completed
Push — master ( 51d20a...9462c8 )
by Caio
04:10
created
src/Models/BoletoInfo/BoletoInfo.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Models/Boletos/Base/Boleto.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.