Remove requirement of checker props in ShortUrlEdition

This commit is contained in:
Alejandro Celaya
2026-05-10 12:59:57 +02:00
parent 2482dabdc3
commit b7db56e43d
5 changed files with 66 additions and 32 deletions
@@ -57,9 +57,6 @@ final class ShortUrlDataInput
return [
...array_filter(get_object_vars($this), static fn (mixed $value) => $value !== null),
'longUrl' => $longUrl,
'validSinceWasProvided' => $this->validSince !== null,
'validUntilWasProvided' => $this->validUntil !== null,
'maxVisitsWasProvided' => $this->maxVisits !== null,
'titleWasProvided' => $this->title !== null,
];
}