summaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Cache
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2021-03-04 14:44:04 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2021-03-04 14:44:04 +0100
commitc3f1eb4f7f2cdbee265b39ccc8096f27a4357c4e (patch)
treec7e62b7c533f6acd3c2a70cc095b283840cf290f /lib/private/Files/Cache
parent3bbacb2f541a513f47e0744ab8a629b936a091d8 (diff)
downloadnextcloud-server-c3f1eb4f7f2cdbee265b39ccc8096f27a4357c4e.tar.gz
nextcloud-server-c3f1eb4f7f2cdbee265b39ccc8096f27a4357c4e.zip
Remove Redundantcasts
For #25839 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/Files/Cache')
-rw-r--r--lib/private/Files/Cache/Storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/Storage.php b/lib/private/Files/Cache/Storage.php
index 74f5df2a5b1..af37bef8415 100644
--- a/lib/private/Files/Cache/Storage.php
+++ b/lib/private/Files/Cache/Storage.php
@@ -77,7 +77,7 @@ class Storage {
$connection = \OC::$server->getDatabaseConnection();
$available = $isAvailable ? 1 : 0;
if ($connection->insertIfNotExist('*PREFIX*storages', ['id' => $this->storageId, 'available' => $available])) {
- $this->numericId = (int)$connection->lastInsertId('*PREFIX*storages');
+ $this->numericId = $connection->lastInsertId('*PREFIX*storages');
} else {
if ($row = self::getStorageById($this->storageId)) {
$this->numericId = (int)$row['numeric_id'];