Skip to content

Commit

Permalink
Upgrade to PHP 7.0.0, code optimalisation
Browse files Browse the repository at this point in the history
  • Loading branch information
David van der Tuijn committed May 26, 2019
1 parent edbd9c7 commit 0578afa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"php": ">=4.0"
"php": ">=7.0.0"
},
"autoload": {
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/number_format_to_decimal.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @return string $sDecimal
*/
function number_format_to_decimal($sValue)
function number_format_to_decimal(string $sValue): string
{
$iCountCommaSeperators = 0;
$iCountDotSeperators = 0;
Expand Down

0 comments on commit 0578afa

Please sign in to comment.