FIX Always use ?int for subsite state (#341)

This commit is contained in:
Guy Sartorelli 2023-02-16 12:33:45 +13:00 committed by GitHub
parent 2f56d944c6
commit 72dc54b0f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ class SearchVariantSubsites extends SearchVariant
public function currentState()
{
return (string) SubsiteState::singleton()->getSubsiteId();
return SubsiteState::singleton()->getSubsiteId();
}
public function reindexStates()
@ -74,8 +74,8 @@ class SearchVariantSubsites extends SearchVariant
if (is_numeric($state)) {
$state = (int) $state;
} else {
throw new InvalidArgumentException("Invalid state ID. State ID should be number.");
} elseif ($state !== null) {
throw new InvalidArgumentException("Invalid state ID. State ID should be number or null.");
}
// Note: Setting directly to the SubsiteState because we don't want the subsite ID to be persisted