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

@@ -242,7 +242,7 @@ class Bill extends Model
protected function amountMax(): Attribute
{
return Attribute::make(
get: fn($value) => (string)$value,
get: fn ($value) => (string)$value,
);
}
@@ -254,7 +254,7 @@ class Bill extends Model
protected function amountMin(): Attribute
{
return Attribute::make(
get: fn($value) => (string)$value,
get: fn ($value) => (string)$value,
);
}
}