Skip to content

Commit

Permalink
php antigo retorno
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardokum committed Dec 4, 2023
1 parent 89fea93 commit 4d4c03a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/Boleto/AbstractBoleto.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Eduardokum\LaravelBoleto\Boleto;

use Eduardokum\LaravelBoleto\MagicTrait;
use Exception;
use Throwable;
use Carbon\Carbon;
use Illuminate\Support\Str;
use Eduardokum\LaravelBoleto\Util;
use SimpleSoftwareIO\QrCode\Generator;
use Eduardokum\LaravelBoleto\MagicTrait;
use BaconQrCode\Common\ErrorCorrectionLevel;
use Eduardokum\LaravelBoleto\Boleto\Render\Pdf;
use Eduardokum\LaravelBoleto\Boleto\Render\Html;
Expand Down Expand Up @@ -1798,7 +1798,7 @@ public function setValorRecebido($valorRecebido)
/**
* @return ?string
*/
public function getPixQrCode(): ?string
public function getPixQrCode()
{
return $this->pixQrCode;
}
Expand Down Expand Up @@ -1872,7 +1872,7 @@ public function setQrCodeStyle($qrCodeStyle)
/**
* @return ?string
*/
public function getPixQrCodeBase64(): ?string
public function getPixQrCodeBase64()
{
if ($this->getPixQrCode() == null) {
return null;
Expand All @@ -1898,7 +1898,7 @@ public function getPixQrCodeBase64(): ?string
/**
* @param string $pixQrCode
*/
public function setPixQrCode(string $pixQrCode): void
public function setPixQrCode($pixQrCode)
{
$this->pixQrCode = $pixQrCode;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Boleto/Banco/Ourinvest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Ourinvest extends AbstractBoleto implements BoletoContract
/**
* @return bool
*/
public function isEmissaoPropria(): bool
public function isEmissaoPropria()
{
return $this->emissaoPropria;
}
Expand Down

0 comments on commit 4d4c03a

Please sign in to comment.