summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-01-27 09:34:59 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-01-27 09:34:59 +0100
commit956de27e947b9f3697411ce365595640d5620851 (patch)
tree7a6102b77bc0302650962fb9b6a17bcd666c50c4
parent1add2f3f58d6695ad06cc9d77ea0bf04e74339f7 (diff)
parentb8769802dfebee056a8cdeecaaccc7b258e6cf90 (diff)
downloadnextcloud-server-956de27e947b9f3697411ce365595640d5620851.tar.gz
nextcloud-server-956de27e947b9f3697411ce365595640d5620851.zip
Merge pull request #13676 from owncloud/fix-node-iface
Fix node interface
-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
*