Skip to content

Commit 058cfb5

Browse files
committed
styling
1 parent 104d41a commit 058cfb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/helpers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use Akaunting\Money\Currency;
44
use Akaunting\Money\Money;
55

6-
if (!function_exists('money')) {
6+
if (! function_exists('money')) {
77
function money(mixed $amount, string $currency = null, bool $convert = false): Money
88
{
99
if (is_null($currency)) {
@@ -15,7 +15,7 @@ function money(mixed $amount, string $currency = null, bool $convert = false): M
1515
}
1616
}
1717

18-
if (!function_exists('currency')) {
18+
if (! function_exists('currency')) {
1919
function currency(string $currency): Currency
2020
{
2121
return new Currency($currency);

0 commit comments

Comments
 (0)