summaryrefslogtreecommitdiffstats
path: root/lib/public/Files
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-07-22 21:10:16 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2017-07-22 21:10:16 +0200
commit361d2badd8f5be949acd94f52fc9ba2d0a98052d (patch)
tree76811147fccd8c0c62bc9884e32a349bf72c8806 /lib/public/Files
parent9a151056d034f4124ea837f77b5a13f35834fd22 (diff)
downloadnextcloud-server-361d2badd8f5be949acd94f52fc9ba2d0a98052d.tar.gz
nextcloud-server-361d2badd8f5be949acd94f52fc9ba2d0a98052d.zip
Some phpstorm inspection fixes
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public/Files')
-rw-r--r--lib/public/Files/ObjectStore/IObjectStore.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/public/Files/ObjectStore/IObjectStore.php b/lib/public/Files/ObjectStore/IObjectStore.php
index 7ae34ce1bc0..3126791d873 100644
--- a/lib/public/Files/ObjectStore/IObjectStore.php
+++ b/lib/public/Files/ObjectStore/IObjectStore.php
@@ -34,7 +34,7 @@ interface IObjectStore {
* @return string the container or bucket name where objects are stored
* @since 7.0.0
*/
- function getStorageId();
+ public function getStorageId();
/**
* @param string $urn the unified resource name used to identify the object
@@ -42,7 +42,7 @@ interface IObjectStore {
* @throws \Exception when something goes wrong, message will be logged
* @since 7.0.0
*/
- function readObject($urn);
+ public function readObject($urn);
/**
* @param string $urn the unified resource name used to identify the object
@@ -50,7 +50,7 @@ interface IObjectStore {
* @throws \Exception when something goes wrong, message will be logged
* @since 7.0.0
*/
- function writeObject($urn, $stream);
+ public function writeObject($urn, $stream);
/**
* @param string $urn the unified resource name used to identify the object
@@ -58,6 +58,5 @@ interface IObjectStore {
* @throws \Exception when something goes wrong, message will be logged
* @since 7.0.0
*/
- function deleteObject($urn);
-
+ public function deleteObject($urn);
}