chore: code style

This commit is contained in:
hackerESQ
2025-01-28 17:14:49 -06:00
parent c4736fae70
commit e8ef0921ad
123 changed files with 1051 additions and 1197 deletions
+2 -2
View File
@@ -13,10 +13,10 @@ trait WithTrimStrings
public function updatedWithTrimStrings(string $property, mixed $value): void
{
if (is_string($value) && !in_array($property, $this->trimExceptions())) {
if (is_string($value) && ! in_array($property, $this->trimExceptions())) {
$this->fill([
$property => Str::trim($value),
]);
}
}
}
}