summaryrefslogtreecommitdiffstats
path: root/lib/appframework/core/api.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-21 01:02:15 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-21 01:02:15 +0200
commit38f9df429397619482e3e3f7ffb0db5274222e4c (patch)
tree43d47acc7c86ea903daa84a8d8840f99dcc6d398 /lib/appframework/core/api.php
parent911bd3c16f508eb8f3cb9b03a5a21e2aa72ebf79 (diff)
downloadnextcloud-server-38f9df429397619482e3e3f7ffb0db5274222e4c.tar.gz
nextcloud-server-38f9df429397619482e3e3f7ffb0db5274222e4c.zip
introducing OCP\AppFramework\App
Diffstat (limited to 'lib/appframework/core/api.php')
-rw-r--r--lib/appframework/core/api.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/appframework/core/api.php b/lib/appframework/core/api.php
index eb8ee01e5db..337e3b57d6d 100644
--- a/lib/appframework/core/api.php
+++ b/lib/appframework/core/api.php
@@ -23,6 +23,7 @@
namespace OC\AppFramework\Core;
+use OCP\AppFramework\IApi;
/**
@@ -32,7 +33,7 @@ namespace OC\AppFramework\Core;
* Should you find yourself in need for more methods, simply inherit from this
* class and add your methods
*/
-class API {
+class API implements IApi{
private $appName;