Minor code cleanup

This commit is contained in:
James Cole
2023-08-11 19:40:44 +02:00
parent db94f18d46
commit 4c90f66578
8 changed files with 27 additions and 15 deletions

View File

@@ -132,7 +132,7 @@ class AvailableBudget extends Model
protected function amount(): Attribute
{
return Attribute::make(
get: fn($value) => (string)$value,
get: fn ($value) => (string)$value,
);
}
}