From 361d2badd8f5be949acd94f52fc9ba2d0a98052d Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Sat, 22 Jul 2017 21:10:16 +0200 Subject: Some phpstorm inspection fixes Signed-off-by: Roeland Jago Douma --- lib/public/Files/ObjectStore/IObjectStore.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'lib/public/Files/ObjectStore') 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); } -- cgit v1.2.3