diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-07-05 23:18:41 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-07-08 12:35:50 +0200 |
commit | f98cb9efa042b2041ad5d7dff885b036d37e921b (patch) | |
tree | d3bf918c58d7c4bbe3df818afec7cb4656dab237 /apps/files_sharing | |
parent | 31ea10b04e5a8e52dce82f477a38bda062d70c62 (diff) | |
download | nextcloud-server-f98cb9efa042b2041ad5d7dff885b036d37e921b.tar.gz nextcloud-server-f98cb9efa042b2041ad5d7dff885b036d37e921b.zip |
Fix type hinting
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/lib/Migration.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/Migration.php b/apps/files_sharing/lib/Migration.php index ad3d026d0f6..b3759ea7b5f 100644 --- a/apps/files_sharing/lib/Migration.php +++ b/apps/files_sharing/lib/Migration.php @@ -24,6 +24,7 @@ namespace OCA\Files_Sharing; use Doctrine\DBAL\Connection; +use OCP\ICache; use OCP\IDBConnection; use OC\Cache\CappedMemoryCache; @@ -38,7 +39,7 @@ class Migration { /** @var IDBConnection */ private $connection; - /** @var array with all shares we already saw */ + /** @var ICache with all shares we already saw */ private $shareCache; /** @var string */ |