Explicit cast for ProviderV1Adapter
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
650e4f9f4c
commit
d3d37aa19d
1 changed files with 2 additions and 2 deletions
|
@ -36,11 +36,11 @@ class ProviderV1Adapter implements IProviderV2 {
|
|||
}
|
||||
|
||||
public function getMimeType(): string {
|
||||
return $this->providerV1->getMimeType();
|
||||
return (string)$this->providerV1->getMimeType();
|
||||
}
|
||||
|
||||
public function isAvailable(FileInfo $file): bool {
|
||||
return $this->providerV1->isAvailable($file);
|
||||
return (bool)$this->providerV1->isAvailable($file);
|
||||
}
|
||||
|
||||
public function getThumbnail(File $file, int $maxX, int $maxY): ?IImage {
|
||||
|
|
Loading…
Reference in a new issue