From 74e9604034c1f07651c2c9e3e8ebe63afd3e45f2 Mon Sep 17 00:00:00 2001 From: Ricardo Kovalski Date: Mon, 31 May 2021 17:53:37 -0300 Subject: [PATCH] =?UTF-8?q?Aplicando=20cs=20ao=20c=C3=B3digo=20e=20corrigi?= =?UTF-8?q?ndo=20erros=20de=20sintax.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/decimalFormater.php | 1 - examples/intlCurrencyFormater.php | 1 - examples/intlDecimalFormater.php | 1 - src/Exceptions/CurrencyIsoCodeException.php | 2 -- src/Exceptions/LocaleException.php | 3 --- src/Support/Helpers.php | 3 +-- 6 files changed, 1 insertion(+), 10 deletions(-) diff --git a/examples/decimalFormater.php b/examples/decimalFormater.php index 3ad7928..d4a34c3 100644 --- a/examples/decimalFormater.php +++ b/examples/decimalFormater.php @@ -12,4 +12,3 @@ $intlCurrencyFormatter->format(268.85); //268.85 $intlCurrencyFormatter->format(702); //702.00 - diff --git a/examples/intlCurrencyFormater.php b/examples/intlCurrencyFormater.php index c1f513f..7b82c57 100644 --- a/examples/intlCurrencyFormater.php +++ b/examples/intlCurrencyFormater.php @@ -11,4 +11,3 @@ $intlCurrencyFormatter = new IntlCurrencyFormatter($formatterConfig); $intlCurrencyFormatter->format(250.75); //R$250.75 - diff --git a/examples/intlDecimalFormater.php b/examples/intlDecimalFormater.php index ba833e9..390df6b 100644 --- a/examples/intlDecimalFormater.php +++ b/examples/intlDecimalFormater.php @@ -11,4 +11,3 @@ $intlDecimalFormatter = new IntlDecimalFormatter($formatterConfig); $intlDecimalFormatter->format(268.85); //268,85 - diff --git a/src/Exceptions/CurrencyIsoCodeException.php b/src/Exceptions/CurrencyIsoCodeException.php index ed6f3cf..4343aba 100644 --- a/src/Exceptions/CurrencyIsoCodeException.php +++ b/src/Exceptions/CurrencyIsoCodeException.php @@ -11,5 +11,3 @@ public function __construct($message) parent::__construct($message); } } - - diff --git a/src/Exceptions/LocaleException.php b/src/Exceptions/LocaleException.php index d85383c..fe156e8 100644 --- a/src/Exceptions/LocaleException.php +++ b/src/Exceptions/LocaleException.php @@ -11,6 +11,3 @@ public function __construct($message) parent::__construct($message); } } - - - diff --git a/src/Support/Helpers.php b/src/Support/Helpers.php index 78b5cb0..8bd078d 100644 --- a/src/Support/Helpers.php +++ b/src/Support/Helpers.php @@ -1,7 +1,6 @@