summaryrefslogtreecommitdiffstats
path: root/lib/public/AppFramework/IApi.php
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/AppFramework/IApi.php
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/AppFramework/IApi.php')
-rw-r--r--lib/public/AppFramework/IApi.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/public/AppFramework/IApi.php b/lib/public/AppFramework/IApi.php
index 419e1782686..1c3f9419ccd 100644
--- a/lib/public/AppFramework/IApi.php
+++ b/lib/public/AppFramework/IApi.php
@@ -43,7 +43,7 @@ interface IApi {
* @return string the user id of the current user
* @deprecated 8.0.0 Use \OC::$server->getUserSession()->getUser()->getUID()
*/
- function getUserId();
+ public function getUserId();
/**
@@ -53,7 +53,7 @@ interface IApi {
* @param string $appName the name of the app, defaults to the current one
* @return void
*/
- function addScript($scriptName, $appName = null);
+ public function addScript($scriptName, $appName = null);
/**
@@ -63,7 +63,7 @@ interface IApi {
* @param string $appName the name of the app, defaults to the current one
* @return void
*/
- function addStyle($styleName, $appName = null);
+ public function addStyle($styleName, $appName = null);
/**
@@ -72,7 +72,7 @@ interface IApi {
* @param string $name the name of the file without the suffix
* @return void
*/
- function add3rdPartyScript($name);
+ public function add3rdPartyScript($name);
/**
@@ -81,7 +81,7 @@ interface IApi {
* @param string $name the name of the file without the suffix
* @return void
*/
- function add3rdPartyStyle($name);
+ public function add3rdPartyStyle($name);
/**