Skip to content

Commit

Permalink
Aplicando cs ao código e corrigindo erros de sintax.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardokovalski committed May 31, 2021
1 parent e96b828 commit 74e9604
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 10 deletions.
1 change: 0 additions & 1 deletion examples/decimalFormater.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@

$intlCurrencyFormatter->format(268.85); //268.85
$intlCurrencyFormatter->format(702); //702.00

1 change: 0 additions & 1 deletion examples/intlCurrencyFormater.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@
$intlCurrencyFormatter = new IntlCurrencyFormatter($formatterConfig);

$intlCurrencyFormatter->format(250.75); //R$250.75

1 change: 0 additions & 1 deletion examples/intlDecimalFormater.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@
$intlDecimalFormatter = new IntlDecimalFormatter($formatterConfig);

$intlDecimalFormatter->format(268.85); //268,85

2 changes: 0 additions & 2 deletions src/Exceptions/CurrencyIsoCodeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,3 @@ public function __construct($message)
parent::__construct($message);
}
}


3 changes: 0 additions & 3 deletions src/Exceptions/LocaleException.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,3 @@ public function __construct($message)
parent::__construct($message);
}
}



3 changes: 1 addition & 2 deletions src/Support/Helpers.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?php

if ( ! function_exists('toInteger'))
{
if (! function_exists('toInteger')) {
/**
* @param $amount
* @return int
Expand Down

0 comments on commit 74e9604

Please sign in to comment.