Code cleanup

This commit is contained in:
James Cole
2023-09-21 11:32:56 +02:00
parent 724a16944a
commit 417b7c3f86
19 changed files with 82 additions and 57 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,
);
}
}