Skip to content
Closed
Prev Previous commit
Next Next commit
fixup! Support dynamic metadata request on PROPFIND requests
  • Loading branch information
artonge committed Oct 19, 2023
commit 10fc31695fd391752fd8dc83f2a0fc6c5d5c050f
12 changes: 0 additions & 12 deletions lib/private/FilesMetadata/Model/MetadataValueWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,18 +252,6 @@ public function getValueStringList(): array {
return (array) $this->value;
}

/**
* @return string|int|float|bool|array|string[]|int[]
* @throws FilesMetadataNotFoundException
*/
public function getValueAny(): mixed {
if (null === $this->value) {
throw new FilesMetadataNotFoundException('value is not set');
}

return $this->value;
}

/**
* @return array
* @throws FilesMetadataTypeException
Expand Down