Update code style.

This commit is contained in:
James Cole
2023-01-02 16:18:17 +01:00
parent b56acf36c5
commit ebd32e0e08
5 changed files with 8 additions and 7 deletions

View File

@@ -111,7 +111,7 @@ class CurrencyExchangeRate extends Model
protected function rate(): Attribute
{
return Attribute::make(
get: fn($value) => (string) $value,
get: fn ($value) => (string) $value,
);
}
@@ -121,7 +121,7 @@ class CurrencyExchangeRate extends Model
protected function userRate(): Attribute
{
return Attribute::make(
get: fn($value) => (string) $value,
get: fn ($value) => (string) $value,
);
}
}