Cast float to int to avoid invalid scalar argument warning
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
92b67409fa
commit
560ccf5d83
|
@ -4836,11 +4836,6 @@
|
|||
</InvalidReturnType>
|
||||
</file>
|
||||
<file src="lib/private/Files/Stream/Encryption.php">
|
||||
<InvalidScalarArgument occurrences="3">
|
||||
<code>$newFilePosition</code>
|
||||
<code>$newFilePosition</code>
|
||||
<code>$position</code>
|
||||
</InvalidScalarArgument>
|
||||
<UndefinedInterfaceMethod occurrences="1">
|
||||
<code>$cacheEntry</code>
|
||||
</UndefinedInterfaceMethod>
|
||||
|
|
|
@ -416,7 +416,7 @@ class Encryption extends Wrapper {
|
|||
return $return;
|
||||
}
|
||||
|
||||
$newFilePosition = floor($newPosition / $this->unencryptedBlockSize)
|
||||
$newFilePosition = (int)floor($newPosition / $this->unencryptedBlockSize)
|
||||
* $this->util->getBlockSize() + $this->headerSize;
|
||||
|
||||
$oldFilePosition = parent::stream_tell();
|
||||
|
|
Loading…
Reference in New Issue