summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-01-26 15:58:41 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-01-26 15:58:41 +0100
commitb8769802dfebee056a8cdeecaaccc7b258e6cf90 (patch)
treeca4b03d73b9c0f8a9e34900b2c3f25bee1ec0356 /lib
parent810d5a6a675bed9a6a04bf7995a88021642c36e5 (diff)
downloadnextcloud-server-b8769802dfebee056a8cdeecaaccc7b258e6cf90.tar.gz
nextcloud-server-b8769802dfebee056a8cdeecaaccc7b258e6cf90.zip
fix node interface
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/node/node.php3
-rw-r--r--lib/public/files/node.php2
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/private/files/node/node.php b/lib/private/files/node/node.php
index 17907a53044..536483fc89d 100644
--- a/lib/private/files/node/node.php
+++ b/lib/private/files/node/node.php
@@ -8,10 +8,9 @@
namespace OC\Files\Node;
-use OCP\Files\FileInfo;
use OCP\Files\NotPermittedException;
-class Node implements \OCP\Files\Node, FileInfo {
+class Node implements \OCP\Files\Node {
/**
* @var \OC\Files\View $view
*/
diff --git a/lib/public/files/node.php b/lib/public/files/node.php
index 35c20b487c9..c3434b4b609 100644
--- a/lib/public/files/node.php
+++ b/lib/public/files/node.php
@@ -29,7 +29,7 @@
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
-interface Node {
+interface Node extends FileInfo {
/**
* Move the file or folder to a new location
*